/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/web/deploy/ |
H A D | SecurityCollectionDecorator.java | 63 for (String httpMethod: decoree.getHttpMethods()) { 64 addMethod(httpMethod);
|
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/web/ |
H A D | WebResourceCollection.java | 56 public void addHttpMethod(String httpMethod); argument
|
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/ |
H A D | WebResourceCollectionImpl.java | 152 public void addHttpMethod(String httpMethod) { argument 153 this.getHttpMethods().add(httpMethod); 160 public void removeHttpMethod(String httpMethod) { argument 161 this.getHttpMethods().remove(httpMethod);
|
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/annotation/handlers/ |
H A D | ServletSecurityHandler.java | 160 String httpMethod = httpMethodConstraint.value(); 161 if (httpMethod == null || httpMethod.length() == 0) { 169 httpMethod); 172 webResColl.addHttpMethodOmission(httpMethod); 208 String httpMethod) { 245 if (httpMethod != null) { 246 webResourceColl.addHttpMethod(httpMethod); 203 createSecurityConstraint( WebBundleDescriptor webBundleDesc, Set<String> urlPatterns, String[] rolesAllowed, EmptyRoleSemantic emptyRoleSemantic, TransportGuarantee transportGuarantee, String httpMethod) argument
|
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/generator/ |
H A D | ClassWriter.java | 54 void createCommandResourceConstructor(String commandResourceClassName, String commandName, String httpMethod, boolean linkedToParent, CommandResourceMetaData.ParameterMetaData[] commandParams, String commandDisplayName, String commandAction); argument
|
H A D | CommandResourceMetaData.java | 51 public String httpMethod; field in class:CommandResourceMetaData 69 metaData.httpMethod = currentRow[2];
|
H A D | TextClassWriter.java | 141 public void createCommandResourceConstructor(String commandResourceClassName, String commandName, String httpMethod, boolean linkedToParent, CommandResourceMetaData.ParameterMetaData[] commandParams, String commandDisplayName, String commandAction) { argument 147 writer.write(" \"" + httpMethod + "\",\n"); 148 if (!httpMethod.equals("GET")) { 220 .append('"').append(metaData.httpMethod).append("\", ") 246 //TODO this method and createGetDeleteCommand method may be merged to single method createGetXXXCommand(String commandName, String httpMethod)
|
H A D | ResourcesGeneratorBase.java | 330 String httpMethod = metaData.httpMethod; 334 if (httpMethod.equals("GET")) { 336 } else if (httpMethod.equals("DELETE")) { 338 } else if (httpMethod.equals("POST")) { 341 throw new GeneratorException("Invalid httpMethod specified: " + httpMethod); 355 writer.createCommandResourceConstructor(commandResourceClassName, commandName, httpMethod, isLinkedToParent, metaData.commandParams, commandDisplayName, commandAction);
|
H A D | ASMClassWriter.java | 170 mv.visitLdcInsn(metaData.httpMethod); 207 String httpMethod, boolean linkedToParent, 213 if (httpMethod.equals("GET")) { 215 } else if (httpMethod.equals("DELETE")) { 217 } else if (httpMethod.equals("POST")) { 220 throw new GeneratorException("Invalid httpMethod specified: " + httpMethod); 222 boolean isget = (httpMethod.equals("GET")); 233 mv.visitLdcInsn(httpMethod); 206 createCommandResourceConstructor(String commandResourceClassName, String commandName, String httpMethod, boolean linkedToParent, CommandResourceMetaData.ParameterMetaData[] commandParams, String commandDisplayName, String commandAction) argument
|
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/node/web/ |
H A D | WebResourceCollectionNode.java | 164 for (String httpMethod: descriptor.getHttpMethods()) { 165 appendTextChild(myNode, WebTagNames.HTTP_METHOD, httpMethod);
|
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/web/integration/ |
H A D | WebSecurityManager.java | 545 String uri, String httpMethod) { 553 httpMethod == null ? null : new String[] { httpMethod }, 579 httpMethod = httpsr.getMethod(); 584 httpMethod == null ? null : new String[] { httpMethod }, 544 hasUserDataPermission(HttpServletRequest httpsr, String uri, String httpMethod) argument
|
/glassfish-3.1.2/admin/util/src/main/java/com/sun/enterprise/admin/remote/ |
H A D | RemoteAdminCommand.java | 551 private void doHttpCommand(String uriString, String httpMethod, argument 553 doHttpCommand(uriString, httpMethod, cmd, false /* isForMetadata */); 567 * @param httpMethod the HTTP method to use for the connection 571 private void doHttpCommand(String uriString, String httpMethod, argument 658 urlConnection.setRequestMethod(httpMethod);
|
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/web/ |
H A D | WebModule.java | 2117 String httpMethod = httpMethodConstraintElement.getMethodName(); 2122 httpMethod); 2125 webResColl.addHttpMethodOmission(httpMethod); 2198 for (String httpMethod : wrc.getHttpMethods()) { 2199 webResourceColl.addHttpMethod(httpMethod); 2204 for (String httpMethod : wrc.getHttpMethodOmissions()) { 2205 webResourceColl.addHttpMethodOmission(httpMethod);
|
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/admin/adapter/ |
H A D | AdminConsoleAdapter.java | 910 static HttpMethod getHttpMethod(String httpMethod) { argument 912 if (hh.method.equalsIgnoreCase(httpMethod)) {
|
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/ |
H A D | Audit.java | 677 for (String httpMethod: wrc.getHttpMethods()) { 678 sbm.append(httpMethod);
|
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/resources/ |
H A D | StatusGenerator.java | 234 public void createCommandResourceConstructor(String commandResourceClassName, String commandName, String httpMethod, boolean linkedToParent, ParameterMetaData[] commandParams, String commandDisplayName, String commandAction) { argument
|
/glassfish-3.1.2/security/webintegration/src/main/java/com/sun/web/security/ |
H A D | RealmAdapter.java | 1191 String httpMethod, Context context) { 1190 findSecurityConstraints(String requestPathMB, String httpMethod, Context context) argument
|