Package org.apache.tools.ant.types
Class Permissions.Permission
- java.lang.Object
- 
- org.apache.tools.ant.types.Permissions.Permission
 
- 
- Enclosing class:
- Permissions
 
 public static class Permissions.Permission extends java.lang.ObjectRepresents a permission.
- 
- 
Constructor SummaryConstructors Constructor Description Permission()
 - 
Method SummaryModifier and Type Method Description java.lang.StringgetActions()Get the actions.java.lang.StringgetClassName()Get the class of the permission.java.lang.StringgetName()Get the name of the permission.voidsetActions(java.lang.String actions)Set the actions.voidsetClass(java.lang.String aClass)Set the class, mandatory.voidsetName(java.lang.String aName)Set the name of the permission.java.lang.StringtoString()Get a string description of the permissions.
 
- 
- 
- 
Method Detail- 
setClasspublic void setClass(java.lang.String aClass) Set the class, mandatory.- Parameters:
- aClass- The class name of the permission.
 
 - 
getClassNamepublic java.lang.String getClassName() Get the class of the permission.- Returns:
- The class name of the permission.
 
 - 
setNamepublic void setName(java.lang.String aName) Set the name of the permission.- Parameters:
- aName- The name of the permission.
 
 - 
getNamepublic java.lang.String getName() Get the name of the permission.- Returns:
- The name of the permission.
 
 - 
setActionspublic void setActions(java.lang.String actions) Set the actions.- Parameters:
- actions- The actions of the permission.
 
 - 
getActionspublic java.lang.String getActions() Get the actions.- Returns:
- The actions of the permission.
 
 - 
toStringpublic java.lang.String toString() Get a string description of the permissions.- Overrides:
- toStringin class- java.lang.Object
- Returns:
- string description of the permissions.
 
 
- 
 
-