Methods Summary |
---|
public com.sun.enterprise.deployment.MethodDescriptor | getRemoveMethod()
return removeMethod;
|
public boolean | getRetainIfException()
return retainIfException;
|
public boolean | isRetainIfExceptionSet()
return retainIfExceptionSet;
|
public void | setRemoveMethod(com.sun.enterprise.deployment.MethodDescriptor method)
removeMethod = method;
|
public void | setRetainIfException(boolean flag)
retainIfException = flag;
retainIfExceptionSet = true;
|
public java.lang.String | toString()
StringBuffer sb = new StringBuffer();
sb.append("remove method = " + removeMethod + "\t");
sb.append("retainIfException = " + retainIfException);
return sb.toString();
|