Searched defs:Request (Results 1 - 8 of 8) sorted by relevance

/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/jauth/callback/
H A DSecretKeyCallback.java59 public static interface Request extends interface in class:SecretKeyCallback
60 javax.security.auth.message.callback.SecretKeyCallback.Request { };
63 * Request type for secret keys that are identified via an alias.
67 implements Request {
86 * Constructs this SecretKeyCallback with a secret key Request object.
96 public SecretKeyCallback(Request request) {
101 * Get the Request object which identifies the secret key to be returned.
103 * @return the Request object which identifies the private key
107 public Request getRequest() {
108 return (Request)supe
[all...]
H A DPrivateKeyCallback.java60 public static interface Request extends interface in class:PrivateKeyCallback
61 javax.security.auth.message.callback.PrivateKeyCallback.Request { };
64 * Request type for private keys that are identified via an alias.
68 implements Request {
88 * Request type for private keys that are identified via a SubjectKeyID
92 implements Request {
112 * Request type for private keys that are identified via an
117 implements Request {
143 * Constructs this PrivateKeyCallback with a private key Request object.
154 public PrivateKeyCallback(Request reques
[all...]
/glassfish-3.1.2/security/javax.security.auth.message/src/main/java/javax/security/auth/message/callback/
H A DSecretKeyCallback.java61 private Request request;
67 public static interface Request { }; interface in class:SecretKeyCallback
70 * Request type for secret keys that are identified using an alias.
72 public static class AliasRequest implements Request {
101 * Constructs this SecretKeyCallback with a secret key Request object.
109 * @param request Request object identifying the secret key, or null.
111 public SecretKeyCallback(Request request) {
116 * Used by the CallbackHandler to get the Request object which identifies
119 * @return The Request object which identifies the private key
123 public Request getReques
[all...]
H A DPrivateKeyCallback.java60 private Request request;
67 public static interface Request { }; interface in class:PrivateKeyCallback
70 * Request type for private keys that are identified using an alias.
72 public static class AliasRequest implements Request {
102 * Request type for private keys that are identified using a SubjectKeyID
104 public static class SubjectKeyIDRequest implements Request {
136 * Request type for private keys that are identified using an
139 public static class IssuerSerialNumRequest implements Request {
186 * Request type for private keys that are identified using a
189 public static class DigestRequest implements Request {
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/
H A DRequest.java71 * A <b>Request</b> is the Catalina-internal facade for a
79 public interface Request { interface
92 * Return the Connector through which this Request was received.
98 * Set the Connector through which this Request was received.
106 * Return the Context within which this Request is being processed.
112 * Set the Context within which this Request is being processed. This
137 * Return the Host within which this Request is being processed.
143 * Set the Host within which this Request is being processed. This
145 * before the Request is passed to a context.
153 * Return descriptive information about this Request implementatio
[all...]
/glassfish-3.1.2/tests/embedded/maven-plugin/websockets/src/main/webapp/javascripts/
H A Dprototype.js650 Ajax.Request = Class.create();
651 Ajax.Request.Events =
654 Ajax.Request.prototype = Object.extend(new Ajax.Base(), {
741 var event = Ajax.Request.Events[readyState];
777 Object.extend(Object.extend(Ajax.Updater.prototype, Ajax.Request.prototype), {
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/connector/
H A DRequest.java123 public class Request class in inherits:HttpRequest,HttpServletRequest
128 * Descriptive information about this Request implementation.
131 "org.apache.catalina.connector.Request/1.0";
157 Logger.getLogger(Request.class.getName());
209 * The set of cookies associated with this Request.
217 * The attributes associated with this Request, keyed by attribute name.
221 * The preferred Locales associated with this Request.
267 * Request parameters parsed flag.
325 * The socket through which this Request was received.
406 protected com.sun.grizzly.tcp.Request coyoteReques
474 public Request() { method in class:Request
[all...]
/glassfish-3.1.2/tests/community/web/jruby/helloapp/public/javascripts/
H A Dprototype.js821 Ajax.Request = Class.create();
822 Ajax.Request.Events =
825 Ajax.Request.prototype = Object.extend(new Ajax.Base(), {
925 var state = Ajax.Request.Events[readyState];
985 Object.extend(Object.extend(Ajax.Updater.prototype, Ajax.Request.prototype), {

Completed in 1655 milliseconds