/glassfish-3.1.2/webservices/jsr109-impl/src/main/java/org/glassfish/webservices/ |
H A D | HandlerResolverImpl.java | 67 List<Handler> chain = null; 74 chain = chainMap.get(next); 78 if (chain == null) { 79 chain = new ArrayList<Handler>(); 81 return chain; 84 public void setHandlerChain(PortInfo info, List<Handler> chain) { argument 87 chainMap.put(info, chain); 89 currentList.addAll(chain);
|
/glassfish-3.1.2/admin/cli/src/main/java/com/sun/enterprise/admin/cli/remote/ |
H A D | ExceptionAnalyzer.java | 57 private final List<Throwable> chain; field in class:ExceptionAnalyzer 62 this.chain = new ArrayList<Throwable>(); 63 chain.add(exc); 70 chain.add(t); 75 /** Returns the first instance of the given Exception class in the chain 78 * @param ac the unknown subclass of Exception that needs the chain to be examined for 83 for (Throwable t : chain) {
|
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/jauth/callback/ |
H A D | SignatureKeyCallback.java | 59 private Certificate[] chain; field in class:SignatureKeyCallback 64 * <p> Both a PrivateKey and corresponding certificate chain 67 * certificate returned in the chain. 71 * certificate returned in the requested chain, 91 * @param chain the corresponding certificate chain 93 public void setKey(PrivateKey key, Certificate[] chain) { argument 95 this.chain = chain; 108 * Get the certificate chain [all...] |
/glassfish-3.1.2/tests/embedded/web/web-api/src/test/java/org/glassfish/tests/embedded/web/ |
H A D | NewFilter.java | 55 FilterChain chain) 58 chain.doFilter(request, response); 54 doFilter(ServletRequest request, ServletResponse response, FilterChain chain) argument
|
/glassfish-3.1.2/jms/admin/src/main/java/com/sun/messaging/jmq/management/ |
H A D | DefaultTrustManager.java | 66 public void checkClientTrusted(X509Certificate[] chain, String authType) { argument 69 public void checkServerTrusted(X509Certificate[] chain, String authType) { argument
|
/glassfish-3.1.2/admin/util/src/main/java/com/sun/enterprise/admin/util/ |
H A D | AsadminTrustManager.java | 107 * Checks if client is trusted given the certificate chain and 120 * @param chain The server certificate to be validated. 124 public void checkServerTrusted(X509Certificate[] chain, String authType) argument 135 checkCertificate(chain); 187 * @param chain 191 protected void checkCertificate(X509Certificate[] chain) argument 194 if (chain == null || chain.length == 0) { 199 for (int i = 0 ; i < chain.length ; i ++) { 200 chain[ [all...] |
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/interceptors/ |
H A D | AroundInvokeInvocationContext.java | 61 private InterceptorManager.InterceptorChain chain; field in class:AroundInvokeInvocationContext 67 InterceptorManager.InterceptorChain chain, 73 this.chain = chain; 88 return chain.invokeNext(interceptorIndex, this); 65 AroundInvokeInvocationContext(Object targetObjectInstance, Object[] interceptorInstances, InterceptorManager.InterceptorChain chain, Method m, Object[] params ) argument
|
H A D | CallbackInvocationContext.java | 68 CallbackChainImpl chain) { 71 callbackChain = chain; 66 CallbackInvocationContext(Object targetObjectInstance, Object[] interceptorInstances, CallbackChainImpl chain) argument
|
H A D | InterceptorInvocationHandler.java | 144 InterceptorManager.InterceptorChain chain = 152 new AroundInvokeInvocationContext(targetInstance, interceptorInstances, chain, 155 returnValue = interceptorManager.intercept(chain, invContext);
|
/glassfish-3.1.2/security/javax.security.auth.message/src/main/java/javax/security/auth/message/callback/ |
H A D | PrivateKeyCallback.java | 51 * and its corresponding certificate chain. 62 private Certificate[] chain; field in class:PrivateKeyCallback 79 * to be returned. The corresponding certificate chain for the 111 * to be returned. The corresponding certificate chain for the 148 * is returned in the callback. The corresponding certificate chain 203 </code>. The corresponding certificate chain for the private key is 246 * to be returned. The corresponding certificate chain for the 272 * the corresponding certificate chain within the Callback. 274 * <p> If the requested private key or chain could not be found, 279 * @param chain Th 281 setKey(PrivateKey key, Certificate[] chain) argument [all...] |
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/types/ |
H A D | HandlerChainContainer.java | 48 * This interface defines API related to handler chain containers 54 public void addHandlerChain(WebServiceHandlerChain chain); argument
|
/glassfish-3.1.2/admin/jmx-remote/client/src/main/java/com/sun/enterprise/admin/jmx/remote/https/ |
H A D | SunOneBasicX509TrustManager.java | 75 * As of $Revision: 1.4 $ it checks if the server is trusted and displays the certificate chain 117 /** Checks if client is trusted given the certificate chain and authorization type string, 130 * @param chain The server certificate to be validated. 134 public void checkServerTrusted(X509Certificate[] chain, String authType) argument 145 checkCertificate(chain); 231 * @param chain 235 protected void checkCertificate(X509Certificate[] chain) throws RuntimeException, argument 238 if (chain == null || chain.length == 0) { 243 for (int i = 0 ; i < chain [all...] |
/glassfish-3.1.2/tests/embedded/web/web-war/web-fragment1/src/main/java/org/glassfish/tests/embedded/webwar/webfragment1/ |
H A D | WFTestFilter.java | 61 FilterChain chain) throws IOException, ServletException { 71 chain.doFilter(req, res); 60 doFilter(ServletRequest req, ServletResponse res, FilterChain chain) argument
|
/glassfish-3.1.2/tests/embedded/web/web-war/web-fragment2/src/main/java/org/glassfish/tests/embedded/webwar/webfragment2/ |
H A D | WFTestFilter2.java | 61 FilterChain chain) throws IOException, ServletException { 71 chain.doFilter(req, res); 60 doFilter(ServletRequest req, ServletResponse res, FilterChain chain) argument
|
H A D | WFTestFilter2B.java | 61 FilterChain chain) throws IOException, ServletException { 71 chain.doFilter(req, res); 60 doFilter(ServletRequest req, ServletResponse res, FilterChain chain) argument
|
/glassfish-3.1.2/tests/embedded/web/web-war/web-fragment3/src/main/java/org/glassfish/tests/embedded/webwar/webfragment3/ |
H A D | WFTestFilter3.java | 61 FilterChain chain) throws IOException, ServletException { 71 chain.doFilter(req, res); 60 doFilter(ServletRequest req, ServletResponse res, FilterChain chain) argument
|
/glassfish-3.1.2/security/ssl-impl/src/main/java/com/sun/enterprise/security/ssl/manager/ |
H A D | UnifiedX509TrustManager.java | 80 public void checkClientTrusted(X509Certificate[] chain, String authType) argument 86 mgrs[i].checkClientTrusted(chain, authType); 97 public void checkServerTrusted(X509Certificate[] chain, String authType) argument 103 mgrs[i].checkServerTrusted(chain, authType);
|
H A D | UnifiedX509KeyManager.java | 100 X509Certificate[] chain = null; 102 chain = mgrs[i].getCertificateChain(alias); 103 if (chain != null) { 107 return chain;
|
/glassfish-3.1.2/web/admin/src/main/java/org/glassfish/web/admin/cli/ |
H A D | DeleteProtocolFilter.java | 114 ProtocolChain chain = getChain(handler); 132 }, chain); 133 cleanChain(chain); 149 ProtocolChain chain = handler.getProtocolChain(); 150 if (chain == null) { 152 "protocol-chain", handler.getParent(Protocol.class).getName())); 155 return chain; 158 private void cleanChain(ProtocolChain chain) throws TransactionFailure { argument 159 if (chain != null && chain [all...] |
H A D | CreateProtocolFilter.java | 118 ProtocolChain chain = getChain(handler); 135 }, chain); 150 ProtocolChain chain = handler.getProtocolChain(); 151 if (chain == null) { 152 chain = (ProtocolChain) ConfigSupport.apply(new SingleConfigCode<ProtocolChainInstanceHandler>() { 163 return chain;
|
H A D | ListProtocolFilters.java | 101 final ProtocolChain chain = protocol.getProtocolChainInstanceHandler().getProtocolChain(); 102 if (chain!=null) { 103 for (ProtocolFilter filter : chain.getProtocolFilter()) {
|
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/services/impl/ |
H A D | ServiceInitializerThread.java | 93 * Set a dummy protocol chain and filter. The LWL should never have to come to this place 141 public void configureFilters(ProtocolChain chain) { argument 143 chain.addFilter(readFilter);
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/ssi/ |
H A D | SSIFilter.java | 126 FilterChain chain) throws IOException, ServletException { 139 // process remainder of filter chain 140 chain.doFilter(req, responseIncludeWrapper); 142 // we can't assume the chain flushed its output 125 doFilter(ServletRequest request, ServletResponse response, FilterChain chain) argument
|
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/ |
H A D | ManagedBeanDescriptor.java | 190 public void setClassInterceptorChain(List<InterceptorDescriptor> chain) { argument 191 classInterceptorChain = new LinkedList<InterceptorDescriptor>(chain); 194 public void setMethodLevelInterceptorChain(MethodDescriptor m, List<InterceptorDescriptor> chain) { argument 196 methodInterceptorsMap.put(m, chain); 279 // See if there's any method-level setting (either a chain 280 // or a empty list ). If not, use class-level chain
|
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/appserv/web/cache/filter/ |
H A D | CachingFilter.java | 116 * chain due to a client request for a resource at the end of the chain. 118 * the request and response to the next entity in the chain. 122 * @param chain the filter chain to in the request processing 135 FilterChain chain ) 209 chain.doFilter(srequest, (ServletResponse)wrapper); 284 chain.doFilter(srequest, sresponse);
|