Methods Summary |
---|
public void | addPersistenceContextRef(org.jboss.metamodel.descriptor.PersistenceContextRef ref)
persistenceContextRefs.add(ref);
|
public void | addPersistenceUnitRef(org.jboss.metamodel.descriptor.PersistenceUnitRef ref)
persistenceUnitRefs.add(ref);
|
public Method | getAroundInvoke()
return aroundInvoke;
|
public java.lang.String | getInterceptorClass()
return interceptorClass;
|
public java.util.List | getPersistenceContextRefs()
return persistenceContextRefs;
|
public java.util.List | getPersistenceUnitRefs()
return persistenceUnitRefs;
|
public Method | getPostActivate()
return postActivate;
|
public Method | getPostConstruct()
return postConstruct;
|
public Method | getPreDestroy()
return preDestroy;
|
public Method | getPrePassivate()
return prePassivate;
|
public void | setAroundInvoke(Method aroundInvoke)
this.aroundInvoke = aroundInvoke;
|
public void | setInterceptorClass(java.lang.String interceptorClass)
this.interceptorClass = interceptorClass;
|
public void | setPostActivate(Method postActivate)
this.postActivate = postActivate;
|
public void | setPostConstruct(Method postConstruct)
this.postConstruct = postConstruct;
|
public void | setPreDestroy(Method preDestroy)
this.preDestroy = preDestroy;
|
public void | setPrePassivate(Method prePassivate)
this.prePassivate = prePassivate;
|