Searched defs:domain (Results 1 - 25 of 72) sorted by relevance

123

/openjdk7/jdk/test/java/security/Policy/GetInstance/
H A DGetInstancePolicySpi.java51 public boolean engineImplies(ProtectionDomain domain, Permission perm) { argument
54 * Note there is no need to capture own protection domain and
62 return p.implies(domain, perm);
/openjdk7/jdk/src/share/classes/java/security/
H A DPolicySpi.java50 * @param domain the ProtectionDomain to check.
53 * specified domain.
55 * @return boolean true if the permission is granted to the domain.
58 (ProtectionDomain domain, Permission permission);
104 * @param domain the ProtectionDomain to which the returned
115 (ProtectionDomain domain) {
57 engineImplies(ProtectionDomain domain, Permission permission) argument
114 engineGetPermissions(ProtectionDomain domain) argument
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DDnsUrl.java40 * dns://[host][:port][/[domain]]
42 * dns:[/][domain]
48 * The domain indicates the domain name of the context, and is not
49 * necessarily related to the domain of the server; if it is not
50 * provided, the root domain "." is used. Special characters in
51 * the domain name must be %-escaped as described in RFC 2396.
59 private String domain; // domain name of the context field in class:DnsUrl
89 domain
[all...]
H A DDnsContextFactory.java47 * all have the same domain value.
67 public static DnsContext getContext(String domain, argument
70 return new DnsContext(domain, servers, env);
74 * "urls" are used to determine the servers, but any domain
75 * components are overridden by "domain".
77 public static DnsContext getContext(String domain, argument
82 DnsContext ctx = getContext(domain, servers, env);
84 ctx.setProviderUrl(constructProviderUrl(domain, servers));
111 String domain = urls[0].getDomain();
113 // If multiple urls, all must have the same domain
190 constructProviderUrl(String domain, String[] servers) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DXMLErrorCode.java25 * a domain and a message key.</p>
36 /** error domain **/
43 * <p>Constructs an XMLErrorCode with the given domain and key.</p>
45 * @param domain The error domain.
48 public XMLErrorCode(String domain, String key) { argument
49 fDomain = domain;
56 * @param domain The error domain.
59 public void setValues(String domain, Strin argument
[all...]
H A DDefaultErrorHandler.java70 public void warning(String domain, String key, XMLParseException ex) argument
76 public void error(String domain, String key, XMLParseException ex) argument
82 public void fatalError(String domain, String key, XMLParseException ex) argument
H A DErrorHandlerWrapper.java83 * @param domain The domain of the warning. The domain can be any
85 * domain can be used to conveniently specify a web
95 public void warning(String domain, String key, argument
118 * @param domain The domain of the error. The domain can be any
120 * domain can be used to conveniently specify a web
130 public void error(String domain, Strin argument
173 fatalError(String domain, String key, XMLParseException exception) argument
[all...]
H A DDOMErrorHandlerWrapper.java116 * @param domain The domain of the warning. The domain can be any
118 * domain can be used to conveniently specify a web
129 public void warning(String domain, String key, argument
153 * @param domain The domain of the error. The domain can be any
155 * domain can be used to conveniently specify a web
165 public void error(String domain, Strin argument
209 fatalError(String domain, String key, XMLParseException exception) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/parser/
H A DXMLErrorHandler.java45 * @param domain The domain of the warning. The domain can be any
47 * domain can be used to conveniently specify a web
57 public void warning(String domain, String key, argument
64 * @param domain The domain of the error. The domain can be any
66 * domain can be used to conveniently specify a web
76 public void error(String domain, Strin argument
103 fatalError(String domain, String key, XMLParseException exception) argument
[all...]
/openjdk7/jaxp/src/com/sun/xml/internal/stream/
H A DStaxErrorReporter.java76 * @param domain The error domain.
87 String domain, String key, Object[] arguments,
90 MessageFormatter messageFormatter = getMessageFormatter(domain);
97 str.append(domain);
86 reportError(XMLLocator location, String domain, String key, Object[] arguments, short severity) argument
/openjdk7/jdk/src/share/classes/com/sun/security/ntlm/
H A DServer.java51 final private String domain; field in class:Server
64 * @param domain the domain, must not be null
65 * @throws NTLMException if {@code domain} is null.
67 public Server(String version, String domain) throws NTLMException { argument
69 if (domain == null) {
71 "domain cannot be null");
74 this.domain = domain;
75 debug("NTLM Server: (t,version) = (%s,%s)\n", domain, versio
207 getPassword(String domain, String username) argument
[all...]
H A DClient.java49 private String domain; // might be updated by Type 2 msg field in class:Client
67 * @param domain domain of {@code username}, can be null
77 String domain, char[] password) throws NTLMException {
85 this.domain = domain;
89 hostname, username, domain, version, v.toString());
102 if (domain != null) {
110 p.writeSecurityBuffer(16, domain, false);
138 domain
76 Client(String version, String hostname, String username, String domain, char[] password) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/org/glassfish/external/amx/
H A DAMXUtil.java57 @param domain
61 final String domain,
64 return newObjectName(domain + ":" + props);
60 newObjectName( final String domain, final String props) argument
/openjdk7/jdk/src/solaris/native/sun/net/sdp/
H A DSdpSupport.c60 int domain = ipv6_available() ? AF_INET6 : AF_INET; local
62 int domain = AF_INET; local
64 s = socket(domain, SOCK_STREAM, PROTO_SDP);
/openjdk7/jdk/test/java/security/ProtectionDomain/
H A DAllPerm.java86 * this policy should not be called if domain is allPermClassDomain
89 public boolean implies(ProtectionDomain domain, Permission permission) { argument
90 if (domain == allPermClassDomain) {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DErrorHandlerAdaptor.java96 public void fatalError( String domain, String key, XMLParseException e ) { argument
105 public void error( String domain, String key, XMLParseException e ) { argument
114 public void warning( String domain, String key, XMLParseException e ) { argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xpointer/
H A DXPointerErrorHandler.java68 public void warning(String domain, String key, XMLParseException ex) argument
74 public void error(String domain, String key, XMLParseException ex) argument
81 public void fatalError(String domain, String key, XMLParseException ex) argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDOMMessageFormatter.java54 * @param domain domain from which error string is to come.
65 public static String formatMessage(String domain, argument
68 ResourceBundle resourceBundle = getResourceBundle(domain);
71 resourceBundle = getResourceBundle(domain);
73 throw new MissingResourceException("Unknown domain" + domain, null, key);
112 static ResourceBundle getResourceBundle(String domain){ argument
113 if(domain == DOM_DOMAIN || domain
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/io/
H A DMalformedByteSequenceException.java52 /** error domain **/
76 * @param domain The error domain.
82 Locale locale, String domain, String key, Object[] arguments) {
85 fDomain = domain;
95 * <p>Returns the error domain of the error message.</p>
97 * @return the error domain
81 MalformedByteSequenceException(MessageFormatter formatter, Locale locale, String domain, String key, Object[] arguments) argument
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/
H A DRTFAttribute.java45 /* int domain; */
46 public int domain(); method in interface:RTFAttribute
H A DRTFAttributes.java150 int domain; field in class:RTFAttributes.GenericAttribute
156 domain = d;
161 public int domain() { return domain; } method in class:RTFAttributes.GenericAttribute
/openjdk7/jdk/src/share/classes/javax/management/
H A DMBeanServerFactory.java159 * with a standard default domain name. The default domain name
160 * is used as the domain part in the ObjectName of MBeans when the
161 * domain is specified by the user is null.</p>
163 * <p>The standard default domain name is
197 * interface with the specified default domain name. The given
198 * domain name is used as the domain part in the ObjectName of
199 * MBeans when the domain is specified by the user is null.</p>
205 * @param domain th
228 createMBeanServer(String domain) argument
311 newMBeanServer(String domain) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/security/auth/module/
H A DNTSystem.java39 private String domain; field in class:NTSystem
75 * Get the domain for the current NT user.
79 * @return the domain for the current NT user.
82 return domain;
86 * Get a printable SID for the current NT user's domain.
90 * @return a printable SID for the current NT user's domain.
/openjdk7/jdk/test/javax/management/monitor/
H A DReflectionExceptionTest.java106 domain + ":type=" + CounterMonitor.class.getName());
171 domain + ":type=" + GaugeMonitor.class.getName());
239 domain + ":type=" + StringMonitor.class.getName());
310 domain = server.getDefaultDomain();
312 obsObjName = ObjectName.getInstance(domain + ":type=ObservedObject");
357 private String domain; field in class:ReflectionExceptionTest
H A DRuntimeExceptionTest.java105 domain + ":type=" + CounterMonitor.class.getName());
170 domain + ":type=" + GaugeMonitor.class.getName());
238 domain + ":type=" + StringMonitor.class.getName());
308 domain = server.getDefaultDomain();
310 obsObjName = ObjectName.getInstance(domain + ":type=ObservedObject");
355 private String domain; field in class:RuntimeExceptionTest

Completed in 161 milliseconds

123