< prev index next >

src/java.rmi/share/classes/com/sun/rmi/rmid/ExecOptionPermission.java

Print this page

        

*** 30,40 **** import java.util.*; /** * The ExecOptionPermission class represents permission for rmid to use * a specific command-line option when launching an activation group. - * <P> * * @author Ann Wollrath * * @serial exclude */ --- 30,39 ----
*** 66,78 **** /** * Checks if the specified permission is "implied" by * this object. * <P> ! * More specifically, this method returns true if:<p> * <ul> ! * <li> <i>p</i>'s class is the same as this object's class, and<p> * <li> <i>p</i>'s name equals or (in the case of wildcards) * is implied by this object's * name. For example, "a.b.*" implies "a.b.c", and * "a.b=*" implies "a.b=c" * </ul> --- 65,77 ---- /** * Checks if the specified permission is "implied" by * this object. * <P> ! * More specifically, this method returns true if: * <ul> ! * <li> <i>p</i>'s class is the same as this object's class, and * <li> <i>p</i>'s name equals or (in the case of wildcards) * is implied by this object's * name. For example, "a.b.*" implies "a.b.c", and * "a.b=*" implies "a.b=c" * </ul>
*** 109,119 **** /** * Checks two ExecOptionPermission objects for equality. * Checks that <i>obj</i>'s class is the same as this object's class * and has the same name as this object. ! * <P> * @param obj the object we are testing for equality with this object. * @return true if <i>obj</i> is an ExecOptionPermission, and has the same * name as this ExecOptionPermission object, false otherwise. */ public boolean equals(Object obj) { --- 108,118 ---- /** * Checks two ExecOptionPermission objects for equality. * Checks that <i>obj</i>'s class is the same as this object's class * and has the same name as this object. ! * * @param obj the object we are testing for equality with this object. * @return true if <i>obj</i> is an ExecOptionPermission, and has the same * name as this ExecOptionPermission object, false otherwise. */ public boolean equals(Object obj) {
*** 152,162 **** /** * Returns a new PermissionCollection object for storing * ExecOptionPermission objects. * <p> ! * A ExecOptionPermissionCollection stores a collection of * ExecOptionPermission permissions. * * <p>ExecOptionPermission objects must be stored in a manner that allows * them to be inserted in any order, but that also enables the * PermissionCollection <code>implies</code> method --- 151,161 ---- /** * Returns a new PermissionCollection object for storing * ExecOptionPermission objects. * <p> ! * An ExecOptionPermissionCollection stores a collection of * ExecOptionPermission permissions. * * <p>ExecOptionPermission objects must be stored in a manner that allows * them to be inserted in any order, but that also enables the * PermissionCollection <code>implies</code> method
< prev index next >