Searched refs:actions (Results 1 - 25 of 162) sorted by relevance

1234567

/openjdk10/jdk/src/java.logging/share/classes/java/util/logging/
H A DLoggingPermission.java63 * @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);
/openjdk10/corba/src/java.corba/share/classes/sun/corba/
H A DBridgePermission.java52 * 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);
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/
H A DAWTPermission.java33 * no actions list; you either have the named permission
228 * actions string is currently unused and should be {@code null}.
231 * @param actions should be {@code null}
237 public AWTPermission(String name, String actions) argument
239 super(name, actions);
/openjdk10/jdk/src/java.base/share/classes/java/lang/reflect/
H A DReflectPermission.java97 * Constructs a ReflectPermission with the specified name and actions.
98 * The actions should be null; they are ignored.
102 * @param actions should be null
107 public ReflectPermission(String name, String actions) { argument
108 super(name, actions);
/openjdk10/jdk/src/java.base/share/classes/javax/net/ssl/
H A DSSLPermission.java33 * no actions list; you either have the named permission
129 * actions String is currently unused and should be null.
132 * @param actions ignored.
138 public SSLPermission(String name, String actions) argument
140 super(name, actions);
/openjdk10/jdk/src/java.sql/share/classes/java/sql/
H A DSQLPermission.java46 * a name (also referred to as a "target name") but no actions
143 * actions <code>String</code> is currently unused and should be
149 * @param actions should be <code>null</code>
155 public SQLPermission(String name, String actions) { argument
156 super(name, actions);
/openjdk10/jdk/src/jdk.net/share/classes/jdk/net/
H A DNetworkPermission.java33 * name, but no actions list. Callers either possess the permission or not.
89 * @param actions should be {@code null}. Is ignored if not.
93 public NetworkPermission(String name, String actions) argument
95 super(name, actions);
/openjdk10/jdk/src/java.base/share/classes/java/nio/file/
H A DLinkPermission.java97 * @param actions
98 * the actions for the permission; must be the empty string or
102 * if name is empty or invalid, or actions is a non-empty string
104 public LinkPermission(String name, String actions) { argument
107 if (actions != null && actions.length() > 0) {
108 throw new IllegalArgumentException("actions: " + actions);
/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/jdi/
H A DJDIPermission.java36 * to as a "target name") but no actions list; you either have the
107 * @param actions Must be either null or the empty string.
110 public JDIPermission(String name, String actions) argument
116 if (actions != null && actions.length() > 0) {
117 throw new IllegalArgumentException("actions: " + actions);
/openjdk10/jdk/src/jdk.attach/share/classes/com/sun/tools/attach/
H A DAttachPermission.java37 * to as a "target name") but no actions list; you either have the
111 * @param actions Not used and should be <code>null</code>, or
117 public AttachPermission(String name, String actions) { argument
122 if (actions != null && actions.length() > 0) {
123 throw new IllegalArgumentException("actions: " + actions);
/openjdk10/jdk/src/java.management/share/classes/java/lang/management/
H A DManagementPermission.java54 * support. Some actions controlled by this permission can disclose
115 * @param actions Must be either null or the empty string.
121 public ManagementPermission(String name, String actions) argument
127 if (actions != null && actions.length() > 0) {
128 throw new IllegalArgumentException("actions: " + actions);
/openjdk10/jdk/src/java.base/share/classes/java/io/
H A DSerializablePermission.java36 * no actions list; you either have the named permission
109 private String actions; field in class:SerializablePermission
129 * actions String is currently unused and should be null.
132 * @param actions currently unused and must be set to null
138 public SerializablePermission(String name, String actions) argument
140 super(name, actions);
/openjdk10/jdk/src/java.management/share/classes/javax/management/remote/
H A DSubjectDelegationPermission.java35 * 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");
/openjdk10/jdk/src/java.management/share/classes/javax/management/
H A DMBeanTrustPermission.java36 * MBeanTrustPermission contains a target name but no actions list.
71 @param actions the actions for the permission. It must be
76 * "register" nor "*"; or if <code>actions</code> is a non-null
79 public MBeanTrustPermission(String name, String actions) { argument
80 super(name, actions);
81 validate(name,actions);
84 private static void validate(String name, String actions) { argument
85 /* Check that actions is a null empty string */
86 if (actions !
[all...]
/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/actions/
H A DRemoveCookie.java26 package com.sun.hotspot.igv.coordinator.actions;
/openjdk10/jdk/src/java.desktop/unix/classes/sun/awt/X11/
H A DXDropTargetProtocolListener.java30 int dropAction, int actions,
29 handleDropTargetNotification(XWindow xwindow, int x, int y, int dropAction, int actions, long[] formats, long nativeCtxt, int eventID) argument
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/presentation/rmi/
H A DDynamicAccessPermission.java33 * 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);
/openjdk10/jdk/src/java.desktop/share/classes/javax/sound/sampled/
H A DAudioPermission.java33 * actions list; you either have the named permission or you don't.
100 * symbolic name, such as "play" or "record". The {@code actions} parameter
104 * @param actions (unused; should be {@code null})
108 public AudioPermission(final String name, final String actions) { argument
109 super(name, actions);
/openjdk10/jaxws/src/java.xml.ws/share/classes/javax/xml/ws/
H A DWebServicePermission.java34 * a "target name") alone. There are no actions associated
72 * Creates a new permission with the specified name and actions.
74 * The {@code actions} parameter is currently unused and
78 * @param actions should be {@code null}
80 public WebServicePermission(String name, String actions) { argument
81 super(name, actions);
/openjdk10/jdk/src/java.base/share/classes/java/security/
H A DSecurityPermission.java35 * contains a name (also referred to as a "target name") but no actions list;
362 * actions String is currently unused and should be null.
365 * @param actions should be null.
370 public SecurityPermission(String name, String actions) argument
372 super(name, actions);
/openjdk10/jdk/src/java.base/share/classes/java/lang/
H A DRuntimePermission.java33 * contains a name (also referred to as a "target name") but no actions
426 * actions String is currently unused and should be null.
429 * @param actions should be null.
435 public RuntimePermission(String name, String actions) argument
437 super(name, actions);
/openjdk10/jdk/src/java.base/share/classes/java/net/
H A DNetPermission.java36 * no actions list; you either have the named permission
197 * actions String is currently unused and should be null.
200 * @param actions should be null.
206 public NetPermission(String name, String actions) argument
208 super(name, actions);
/openjdk10/jdk/src/java.base/share/classes/javax/security/auth/
H A DAuthPermission.java30 * contains a name (also referred to as a "target name") but no actions
168 * actions String is currently unused and should be null.
172 * @param actions should be null.
177 public AuthPermission(String name, String actions) { argument
181 "createLoginContext.*" : name, actions);
/openjdk10/jdk/test/java/io/FilePermission/
H A DSpecTests.java41 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] + "] " +
/openjdk10/jdk/test/javax/smartcardio/
H A DTestCardPermission.java69 private static void test(String actions) throws Exception { argument
70 test(actions, actions);
73 private static void test(String actions, String canon) throws Exception { argument
74 CardPermission p = new CardPermission("*", actions);
78 throw new Exception("Canonical actions mismatch: " + canon + " != " + a);

Completed in 238 milliseconds

1234567