Searched defs:location (Results 1 - 25 of 44) sorted by relevance

12

/glassfish-3.1.2/extras/osgi-container/src/main/java/org/glassfish/extras/osgicontainer/
H A DOSGiSniffer.java61 public boolean handles(ReadableArchive location, ClassLoader loader) { argument
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/web/deploy/
H A DErrorPageDecorator.java57 private String location; field in class:ErrorPageDecorator
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/
H A DTagLibConfigurationDescriptor.java57 private String location; field in class:TagLibConfigurationDescriptor
66 * Construct a tag library configuration with the given location and URI.
68 * @param the location.
70 public TagLibConfigurationDescriptor(String uri, String location) { argument
72 this.location = location;
99 * Describe the location of the tag library file.
100 * @param the location of the tag library.
102 public void setTagLibLocation(String location) { argument
103 this.location
[all...]
H A DErrorPageDescriptor.java52 private String location; field in class:ErrorPageDescriptor
61 public ErrorPageDescriptor(int errorCode, String location) { argument
63 this.location = location;
67 public ErrorPageDescriptor(String exceptionType, String location) { argument
69 this.location = location;
121 if (this.location == null) {
122 this.location = "";
124 return this.location;
127 setLocation(String location) argument
[all...]
H A DMultipartConfigDescriptor.java52 private String location = null; field in class:MultipartConfigDescriptor
58 return location;
61 public void setLocation(String location) { argument
62 this.location = location;
90 if (location != null) {
91 toStringBuffer.append("\n multipart location ").append(location);
/glassfish-3.1.2/deployment/javaee-full/src/main/java/org/glassfish/javaee/full/deployment/
H A DEarSniffer.java71 * @param location the file or directory to explore
75 public boolean handles(ReadableArchive location, ClassLoader loader) { argument
76 return DeploymentUtils.isEAR(location);
/glassfish-3.1.2/web/gf-web-connector/src/main/java/org/glassfish/web/sniffer/
H A DWebSniffer.java81 * @param location the file or directory to explore
85 public boolean handles(ReadableArchive location, ClassLoader loader) { argument
86 return DeploymentUtils.isWebArchive(location);
/glassfish-3.1.2/webservices/connector/src/main/java/org/glassfish/webservices/connector/
H A DWebServicesSniffer.java76 public boolean handles(ReadableArchive location, ClassLoader loader) { argument
77 return isEntryPresent(location, "WEB-INF/webservices.xml") ||
78 isEntryPresent(location, "META-INF/webservices.xml");
81 private boolean isEntryPresent(ReadableArchive location, String entry) { argument
84 entryPresent = location.exists(entry);
/glassfish-3.1.2/webservices/jsr109-impl/src/main/java/org/glassfish/webservices/
H A DImport.java46 private String location; field in class:Import
52 this.location = loc;
60 return this.location;
64 this.location = loc;
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/web/
H A DMultipartConfig.java52 public void setLocation(String location); argument
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/deploy/
H A DErrorPage.java95 * The context-relative location to handle this error or exception.
97 private String location = null; field in class:ErrorPage
172 * Return the location.
176 return (this.location);
182 * Set the location.
184 * @param location The new location
186 public void setLocation(String location) { argument
188 // if ((location == null) || !location
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/tomcat/util/modeler/modules/
H A DMbeansDescriptorsDOMSource.java87 this.location=loc;
102 public List<ObjectName> loadDescriptors( Registry registry, String location, argument
107 setLocation(location);
H A DMbeansDescriptorsSerSource.java87 this.location=loc;
102 public List<ObjectName> loadDescriptors( Registry registry, String location, argument
106 setLocation(location);
H A DModelerSource.java76 protected String location; field in class:ModelerSource
81 * @param location
86 public List<ObjectName> loadDescriptors( Registry registry, String location, argument
111 location=url.toString();
114 location=((File)source).getAbsolutePath();
117 location=(String)source;
H A DMbeansDescriptorsDigesterSource.java231 this.location=loc;
246 public List<ObjectName> loadDescriptors( Registry registry, String location, argument
249 setLocation(location);
/glassfish-3.1.2/appclient/server/connector/src/main/java/org/glassfish/appclient/server/connector/
H A DAppClientSniffer.java83 * @param location the file or directory to explore
88 public boolean handles(ReadableArchive location, ClassLoader loader) { argument
91 if (location.exists(s)) {
99 Manifest manifest = location.getManifest();
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/
H A DSecuritySniffer.java83 * @param location the file or directory to explore
87 public boolean handles(ReadableArchive location, ClassLoader loader) { argument
88 return (DeploymentUtils.isWebArchive(location) || DeploymentUtils.isEAR(location) ||
89 isJar(location));
141 private boolean isJar(ReadableArchive location) { argument
145 result = location.exists("META-INF/ejb-jar.xml");
/glassfish-3.1.2/ejb/ejb-connector/src/main/java/org/glassfish/ejb/
H A DEjbSniffer.java141 * @param location the file or directory to explore
145 public boolean handles(ReadableArchive location, ClassLoader loader) { argument
146 boolean result = super.handles(location, loader); //Check ejb-jar.xml
150 result = location.exists("META-INF/sun-ejb-jar.xml") ||
151 location.exists("META-INF/glassfish-ejb-jar.xml");
159 result = location.exists("WEB-INF/ejb-jar.xml");
/glassfish-3.1.2/extras/embedded/common/osgi-main/src/main/java/org/glassfish/uberjar/osgimain/
H A DOSGIModule.java54 private String location; field in class:OSGIModule
72 return location;
75 public void setLocation(String location) { argument
76 this.location = location;
93 return super.toString() + " :: location = " + location;
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/web/
H A DTagLibFactory.java208 * by the location in web.xml of the war archive.
210 * @param location location of jsp tlds
212 * @return document object created from tlds specified at the given location
216 private Document createDocument(String location, WebBundleDescriptor webd) argument
220 if (location.startsWith("/")) // NOI18N
221 location = location.substring(1);
223 location = "WEB-INF/" + location; // NOI18
[all...]
/glassfish-3.1.2/admin/config-api/src/main/java/org/glassfish/config/support/
H A DUpgradeService.java598 private String getLocationAsURIString(String location) { argument
599 File appFile = new File(location);
/glassfish-3.1.2/persistence/jpa-connector/src/main/java/org/glassfish/persistence/jpa/
H A DJPASniffer.java87 public boolean handles(ReadableArchive location, ClassLoader loader) { argument
94 if(isEntryPresent(location, WEB_INF)) {
96 isJPAArchive = isEntryPresent(location, WEB_INF_CLASSSES_META_INF_PERSISTENCE_XML);
99 if (isEntryPresent(location, WEB_INF_LIB)) {
100 isJPAArchive = scanForPURootsInLibDir(location, WEB_INF_LIB);
101 } // if (isEntryPresent(location, WEB_INF_LIb))
105 isJPAArchive = isEntryPresent(location, META_INF_PERSISTENCE_XML);
131 private boolean isEntryPresent(ReadableArchive location, String entry) { argument
134 entryPresent = location.exists(entry);
/glassfish-3.1.2/common/internal-api/src/main/java/org/glassfish/internal/deployment/
H A DGenericSniffer.java93 * @param location the file or directory to explore
97 public boolean handles(ReadableArchive location, ClassLoader loader) { argument
100 if (location.exists(appStigma)) {
219 * @param location the readable archive for the application of interest
225 public Map<String,String> getDeploymentConfigurations(final ReadableArchive location) throws IOException { argument
231 is = location.getEntry(path);
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/core/
H A DApplicationHttpResponse.java310 * @param location The new location
314 public void sendRedirect(String location) throws IOException { argument
317 ((HttpServletResponse) getResponse()).sendRedirect(location);
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/fileupload/
H A DMultipart.java66 private final String location; field in class:Multipart
79 String location, long maxFileSize, long maxRequestSize,
83 this.location = location;
89 if (location != null && location.length() != 0) {
90 File tempFile= new File(location);
94 repository = new File(repository, location);
108 return location;
78 Multipart(HttpServletRequest request, Parameters parameters, String location, long maxFileSize, long maxRequestSize, int fileSizeThreshold) argument

Completed in 132 milliseconds

12