Searched refs:JMXPrincipal (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/management/remote/
H A DJMXPrincipal.java35 * <p>Principals such as this <code>JMXPrincipal</code>
47 public class JMXPrincipal implements Principal, Serializable { class in inherits:Principal,Serializable
53 * this <code>JMXPrincipal</code> object.
59 * <p>Creates a JMXPrincipal for a given identity.</p>
66 public JMXPrincipal(String name) { method in class:JMXPrincipal
78 * @return the name of this <code>JMXPrincipal</code>.
85 * Returns a string representation of this <code>JMXPrincipal</code>.
89 * @return a string representation of this <code>JMXPrincipal</code>.
92 return("JMXPrincipal: " + name);
96 * Compares the specified Object with this <code>JMXPrincipal</cod
[all...]
/openjdk7/jdk/test/javax/management/remote/mandatory/passwordAuthenticator/
H A DSimpleStandard.java49 import javax.management.remote.JMXPrincipal;
152 * type JMXPrincipal and refers to the "monitorRole" identity.
159 if (!(principal instanceof JMXPrincipal))
/openjdk7/jdk/test/javax/management/remote/mandatory/subjectDelegation/
H A DSimpleStandard.java49 import javax.management.remote.JMXPrincipal;
150 * type JMXPrincipal and refers to the principalName identity.
157 if (!(principal instanceof JMXPrincipal))
H A DSubjectDelegation1Test.java59 import javax.management.remote.JMXPrincipal;
153 Collections.singleton(new JMXPrincipal("delegate")),
H A DSubjectDelegation3Test.java59 import javax.management.remote.JMXPrincipal;
156 Collections.singleton(new JMXPrincipal("delegate")),
H A DSubjectDelegation2Test.java58 import javax.management.remote.JMXPrincipal;
/openjdk7/jdk/test/javax/management/monitor/
H A DThreadPoolAccTest.java46 import javax.management.remote.JMXPrincipal;
68 Set principals = subject.getPrincipals(JMXPrincipal.class);
134 subject.getPrincipals().add(new JMXPrincipal(principals[i / 3]));
/openjdk7/jdk/test/javax/management/remote/mandatory/notif/
H A DNotificationAccessControllerTest.java52 import javax.management.remote.JMXPrincipal;
76 subject.getPrincipals().contains(new JMXPrincipal("role")))
92 subject.getPrincipals().contains(new JMXPrincipal("role")))
109 subject.getPrincipals().contains(new JMXPrincipal("role")))
119 Collections.singleton(new JMXPrincipal(role)),
H A DNotificationEmissionTest.java57 import javax.management.remote.JMXPrincipal;
68 Collections.singleton(new JMXPrincipal(role)),
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/security/
H A DFileLoginModule.java46 import javax.management.remote.JMXPrincipal;
57 * If successful then a new {@link JMXPrincipal} is created with the
145 private JMXPrincipal user;
324 * <code>JMXPrincipal</code> with the <code>Subject</code> located in the
463 user = new JMXPrincipal(username);
H A DJMXPluggableAuthenticator.java38 import javax.management.remote.JMXPrincipal;
152 * <code>JMXPrincipal(username)</code>.
/openjdk7/jdk/test/javax/management/remote/mandatory/connection/
H A DConnectionTest.java63 import javax.management.remote.JMXPrincipal;
379 bogusPrincipals.add(new JMXPrincipal("foo"));
380 bogusPrincipals.add(new JMXPrincipal("bar"));
/openjdk7/jdk/test/javax/management/remote/mandatory/passwordAccessFile/
H A DNonJMXPrincipalsTest.java28 * principals other than JMXPrincipal.
52 import javax.management.remote.JMXPrincipal;
98 subject.getPrincipals().add(new JMXPrincipal("dummy"));

Completed in 84 milliseconds