/openjdk7/jdk/src/share/classes/java/util/logging/ |
H A D | LoggingPermission.java | 63 * @param actions Must be either null or the empty string. 69 public LoggingPermission(String name, String actions) throws IllegalArgumentException { argument 74 if (actions != null && actions.length() > 0) { 75 throw new IllegalArgumentException("actions: " + actions);
|
/openjdk7/jdk/src/share/classes/com/sun/jdi/ |
H A D | JDIPermission.java | 36 * to as a "target name") but no actions list; you either have the 100 * @param actions Must be either null or the empty string. 103 public JDIPermission(String name, String actions) argument 109 if (actions != null && actions.length() > 0) { 110 throw new IllegalArgumentException("actions: " + actions);
|
/openjdk7/jdk/src/share/classes/javax/management/ |
H A D | MBeanTrustPermission.java | 33 * MBeanTrustPermission contains a target name but no actions list. 68 @param actions the actions for the permission. It must be 73 * "register" nor "*"; or if <code>actions</code> is a non-null 76 public MBeanTrustPermission(String name, String actions) { argument 77 super(name, actions); 78 /* Check that actions is a null empty string */ 79 if (actions != null && actions.length() > 0) 81 "actions mus [all...] |
/openjdk7/corba/src/share/classes/sun/corba/ |
H A D | BridgePermission.java | 52 * actions String is currently unused and should be null. 56 * @param actions should be null. 59 public BridgePermission(String name, String actions) argument 61 super(name, actions);
|
/openjdk7/jdk/src/share/classes/javax/sound/sampled/ |
H A D | AudioPermission.java | 34 * but no actions list; you either have the named permission or you don't. 130 * but no actions list; you either have the named permission or you don't. 224 * symbolic name, such as "play" or "record". The <code>actions</code> 227 * @param actions (unused; should be <code>null</code>) 232 public AudioPermission(String name, String actions) { argument 234 super(name, actions);
|
/openjdk7/jdk/src/share/classes/java/lang/reflect/ |
H A D | ReflectPermission.java | 31 * actions. The only name currently defined is {@code suppressAccessChecks}, 87 * Constructs a ReflectPermission with the specified name and actions. 88 * The actions should be null; they are ignored. 92 * @param actions should be null 97 public ReflectPermission(String name, String actions) { argument 98 super(name, actions);
|
/openjdk7/jdk/src/share/classes/java/sql/ |
H A D | SQLPermission.java | 45 * a name (also referred to as a "target name") but no actions 136 * actions <code>String</code> is currently unused and should be 142 * @param actions should be <code>null</code> 148 public SQLPermission(String name, String actions) { argument 149 super(name, actions);
|
/openjdk7/jdk/src/share/classes/java/awt/ |
H A D | AWTPermission.java | 33 * no actions list; you either have the named permission 224 * actions string is currently unused and should be <code>null</code>. 227 * @param actions should be <code>null</code> 233 public AWTPermission(String name, String actions) argument 235 super(name, actions);
|
/openjdk7/jdk/src/share/classes/java/lang/management/ |
H A D | ManagementPermission.java | 107 * @param actions Must be either null or the empty string. 113 public ManagementPermission(String name, String actions) argument 119 if (actions != null && actions.length() > 0) { 120 throw new IllegalArgumentException("actions: " + actions);
|
/openjdk7/jdk/src/share/classes/java/nio/file/ |
H A D | LinkPermission.java | 93 * @param actions 94 * the actions for the permission; must be the empty string or 98 * if name is empty or invalid, or actions is a non-empty string 100 public LinkPermission(String name, String actions) { argument 103 if (actions != null && actions.length() > 0) { 104 throw new IllegalArgumentException("actions: " + actions);
|
/openjdk7/jdk/src/share/classes/com/sun/tools/attach/ |
H A D | AttachPermission.java | 37 * to as a "target name") but no actions list; you either have the 109 * @param actions Not used and should be <code>null</code>, or 115 public AttachPermission(String name, String actions) { argument 120 if (actions != null && actions.length() > 0) { 121 throw new IllegalArgumentException("actions: " + actions);
|
/openjdk7/jdk/src/share/classes/java/io/ |
H A D | SerializablePermission.java | 36 * no actions list; you either have the named permission 99 private String actions; field in class:SerializablePermission 119 * actions String is currently unused and should be null. 122 * @param actions currently unused and must be set to null 128 public SerializablePermission(String name, String actions) argument 130 super(name, actions);
|
/openjdk7/jdk/src/share/classes/javax/management/remote/ |
H A D | SubjectDelegationPermission.java | 35 * to as a "target name") but no actions list; you either have the 79 * SubjectDelegationPermission, and the actions String is 83 * @param actions must be null. 88 * or <code>actions</code> is not null. 90 public SubjectDelegationPermission(String name, String actions) { argument 91 super(name, actions); 93 if (actions != null) 94 throw new IllegalArgumentException("Non-null actions");
|
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/actions/ |
H A D | RemoveCookie.java | 26 package com.sun.hotspot.igv.coordinator.actions;
|
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/ |
H A D | XDropTargetProtocolListener.java | 30 int dropAction, int actions, 29 handleDropTargetNotification(XWindow xwindow, int x, int y, int dropAction, int actions, long[] formats, long nativeCtxt, int eventID) argument
|
/openjdk7/jdk/src/share/classes/javax/smartcardio/ |
H A D | CardPermission.java | 34 * name of the card terminal the permission applies to and a set of actions 38 * card terminals. The actions string is a comma separated list of the actions 39 * listed below, or <code>*</code> to signify "all actions." 41 * <p>Individual actions are: 84 // sum of all the actions above 121 private volatile String actions; field in class:CardPermission 124 * Constructs a new CardPermission with the specified actions. 126 * if this permission applies to all terminals. <code>actions</code> 127 * contains a comma-separated list of the individual actions 140 CardPermission(String terminalName, String actions) argument 148 getMask(String actions) argument [all...] |
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/presentation/rmi/ |
H A D | DynamicAccessPermission.java | 33 * no actions list; you either have the named permission 53 * actions String is currently unused and should be null. 56 * @param actions should be null. 58 public DynamicAccessPermission(String name, String actions) argument 60 super(name, actions);
|
/openjdk7/jdk/src/share/classes/javax/security/auth/ |
H A D | AuthPermission.java | 32 * but no actions list; you either have the named permission 155 * actions String is currently unused and should be null. 161 * @param actions should be null. 166 public AuthPermission(String name, String actions) { argument 170 "createLoginContext.*" : name, actions);
|
/openjdk7/jdk/src/share/classes/java/lang/ |
H A D | RuntimePermission.java | 36 * no actions list; you either have the named permission 375 * actions String is currently unused and should be null. 378 * @param actions should be null. 384 public RuntimePermission(String name, String actions) argument 386 super(name, actions);
|
/openjdk7/jdk/src/share/classes/java/net/ |
H A D | NetPermission.java | 36 * no actions list; you either have the named permission 192 * actions String is currently unused and should be null. 195 * @param actions should be null. 201 public NetPermission(String name, String actions) argument 203 super(name, actions);
|
/openjdk7/jdk/src/share/classes/java/security/ |
H A D | SecurityPermission.java | 36 * but no actions list; you either have the named permission 318 * actions String is currently unused and should be null. 321 * @param actions should be null. 327 public SecurityPermission(String name, String actions) argument 329 super(name, actions);
|
H A D | Permission.java | 34 * <p>Most Permission objects also include an "actions" list that tells the actions 37 * the pathname of a file (or directory), and the actions list 38 * (such as "read, write") specifies which actions are granted for the 40 * The actions list is optional for Permission objects, such as 106 * Checks if the specified permission's actions are "implied by" 107 * this object's actions. 174 * Returns the actions as a String. This is abstract 176 * one is needed. Subclasses should always return actions in what they 189 * @return the actions o [all...] |
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/ |
H A D | WebServicePermission.java | 34 * a "target name") alone. There are no actions associated 73 * Creates a new permission with the specified name and actions. 75 * The <code>actions</code> parameter is currently unused and 79 * @param actions should be <code>null</code> 81 public WebServicePermission(String name, String actions) { argument 82 super(name, actions);
|
/openjdk7/jdk/test/java/io/FilePermission/ |
H A D | SpecTests.java | 41 String actions[] = {"read", "read", "", null, "junk", 48 permit = new FilePermission(names[i], actions[i]); 55 " actions:" + actions[i]); 57 System.out.println(names[i] + ", [" + actions[i] + "] " + 62 System.out.println(names[i] + ", [" + actions[i] + "] " +
|
/openjdk7/jdk/test/javax/smartcardio/ |
H A D | TestCardPermission.java | 70 private static void test(String actions) throws Exception { argument 71 test(actions, actions); 74 private static void test(String actions, String canon) throws Exception { argument 75 CardPermission p = new CardPermission("*", actions); 79 throw new Exception("Canonical actions mismatch: " + canon + " != " + a);
|