Methods Summary |
---|
public void | addInitMethod(InitMethod method)
initMethods.add(method);
|
public void | addRemoveMethod(RemoveMethod method)
removeMethods.add(method);
|
public Method | getAroundInvoke()
return aroundInvoke;
|
public CacheConfig | getCacheConfig()
return cacheConfig;
|
public ClusterConfig | getClusterConfig()
return clusterConfig;
|
public java.lang.String | getClustered()
return clustered;
|
public java.lang.String | getConcurrent()
return concurrent;
|
public java.util.List | getInitMethods()
return initMethods;
|
public Method | getPostActivate()
if (sessionType.equals(STATELESS)) return null;
return postActivate;
|
public Method | getPostConstruct()
return postConstruct;
|
public Method | getPreDestroy()
return preDestroy;
|
public Method | getPrePassivate()
if (sessionType.equals(STATELESS)) return null;
return prePassivate;
|
public java.util.List | getRemoveMethods()
return removeMethods;
|
public java.lang.String | getSessionType()
return sessionType;
|
public boolean | isStateful()
return sessionType.equals(STATEFUL);
|
public boolean | isStateless()
return sessionType.equals(STATELESS);
|
public void | setAroundInvoke(Method aroundInvoke)
this.aroundInvoke = aroundInvoke;
|
public void | setCacheConfig(CacheConfig cacheConfig)
this.cacheConfig = cacheConfig;
|
public void | setClusterConfig(ClusterConfig clusterConfig)
this.clusterConfig = clusterConfig;
|
public void | setClustered(java.lang.String clustered)
this.clustered = clustered;
|
public void | setConcurrent(java.lang.String concurrent)
this.concurrent = concurrent;
|
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;
|
public void | setSessionType(java.lang.String sessionType)
this.sessionType = sessionType;
|
public java.lang.String | toString()
StringBuffer sb = new StringBuffer(100);
sb.append('[");
sb.append(super.toString());
sb.append(",");
sb.append("sessionType=").append(sessionType);
sb.append(']");
return sb.toString();
|