| |
|
| java.lang.Object org.objectweb.jonas_web.deployment.api.MethodDesc
MethodDesc | public class MethodDesc (Code) | | Defines a Method object. It manages exclued, unchecked methods with
the right transportGuarantee. It also manages the roles which were
defined for this method
author: Florent Benoit |
MethodDesc | public MethodDesc(String name)(Code) | | Constructor
Build a Method with the right type
Parameters: name - the name of the method |
addRole | public void addRole(String role, String transportGuaranteeRoleValue)(Code) | | Add role with its transportGuarantee to this method
Parameters: role - role to add Parameters: transportGuaranteeRoleValue - transport guarantee for this role |
addTransportGuarantee | public void addTransportGuarantee(String transportGuaranteeValue)(Code) | | Defines the transport guarantee
Parameters: transportGuaranteeValue - the value |
equals | public boolean equals(Object other)(Code) | | Defined the Equals method
true if it is the same name
Parameters: other - the object to test if it is equals or not true if it is the same object |
getName | public String getName()(Code) | | Gets the name of the Method
name of the Method |
getRolesIterator | public Iterator getRolesIterator()(Code) | | Gets iterator on roles
iterator on roles |
hasRole | public boolean hasRole()(Code) | | Test if there are roles for this method
true if there are roles defined for this method |
hashCode | public int hashCode()(Code) | | Gets the hashcode for this object
hashcode of this object |
isExcluded | public boolean isExcluded()(Code) | | Is this method excluded ?
true is this method is excluded, false otherwise |
isUnchecked | public boolean isUnchecked()(Code) | | Is this method unchecked ?
true is this method is unchecked, false otherwise |
setExcluded | public void setExcluded()(Code) | | Set this method excluded
|
setUnchecked | public void setUnchecked()(Code) | | Set this method unchecked
|
toString | public String toString()(Code) | | String representation
string representation of the pattern |
|
|
|