blob: a18bb0ff37bdec2d060e4a4a3deb081c02245847 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2009 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0, which accompanies this distribution
* and is available at http://www.eclipse.org/legal/epl-v10.html.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.core.internal.jpa1.context.java;
import org.eclipse.jpt.core.context.AccessType;
import org.eclipse.jpt.core.context.PersistentType;
import org.eclipse.jpt.core.internal.context.java.AbstractJavaPersistentType;
import org.eclipse.jpt.core.resource.java.JavaResourcePersistentType;
/**
* JPA 1.0 Java persistent type.
* The specified access is always null.
*/
public class GenericJavaPersistentType
extends AbstractJavaPersistentType
{
public GenericJavaPersistentType(PersistentType.Owner parent, JavaResourcePersistentType jrpt) {
super(parent, jrpt);
}
// ********** access **********
/**
* GenericJavaPersistentType does not support specified access (no Access
* annotation in 1.0), so we return null
*/
@Override
protected AccessType buildSpecifiedAccess() {
return null;
}
/**
* GenericJavaPersistentType does not support specified access
* (no Access annotation in 1.0)
*/
public void setSpecifiedAccess(AccessType specifiedAccess) {
throw new UnsupportedOperationException();
}
}