/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/startup/ |
H A D | HostRuleSet.java | 83 * The matching pattern prefix to use for recognizing our elements. 85 protected String prefix = null; field in class:HostRuleSet 93 * matching pattern prefix. 104 * matching pattern prefix. 106 * @param prefix Prefix for matching pattern rules (including the 109 public HostRuleSet(String prefix) { argument 113 this.prefix = prefix; 132 digester.addObjectCreate(prefix + "Host", 135 digester.addSetProperties(prefix [all...] |
H A D | NamingRuleSet.java | 82 * The matching pattern prefix to use for recognizing our elements. 84 protected String prefix = null; field in class:NamingRuleSet 92 * matching pattern prefix. 103 * matching pattern prefix. 105 * @param prefix Prefix for matching pattern rules (including the 108 public NamingRuleSet(String prefix) { argument 112 this.prefix = prefix; 131 digester.addObjectCreate(prefix + "Ejb", 133 digester.addSetProperties(prefix [all...] |
H A D | EngineRuleSet.java | 84 * The matching pattern prefix to use for recognizing our elements. 86 protected String prefix = null; field in class:EngineRuleSet 94 * matching pattern prefix. 105 * matching pattern prefix. 107 * @param prefix Prefix for matching pattern rules (including the 110 public EngineRuleSet(String prefix) { argument 114 this.prefix = prefix; 133 digester.addObjectCreate(prefix + "Engine", 136 digester.addSetProperties(prefix [all...] |
H A D | WebRuleSet.java | 88 * The matching pattern prefix to use for recognizing our elements. 90 protected String prefix = null; field in class:WebRuleSet 116 * matching pattern prefix. 127 * matching pattern prefix. 129 * @param prefix Prefix for matching pattern rules (including the 132 public WebRuleSet(String prefix) { argument 136 this.prefix = prefix; 158 digester.addRule(prefix + "web-app", 161 digester.addCallMethod(prefix [all...] |
H A D | ContextRuleSet.java | 75 * DefaultContext, be sure to specify a prefix that ends with "/Default".</p> 94 * The matching pattern prefix to use for recognizing our elements. 96 protected String prefix = null; field in class:ContextRuleSet 104 * matching pattern prefix. 115 * matching pattern prefix. 117 * @param prefix Prefix for matching pattern rules (including the 120 public ContextRuleSet(String prefix) { argument 124 this.prefix = prefix; 132 * matching pattern prefix 137 ContextRuleSet(String prefix, boolean create) argument [all...] |
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/ |
H A D | XpathPrefixResolver.java | 55 public String getNamespaceForPrefix(String prefix, Node nc) { argument 56 if (prefix.equals(fakeXPrefix)) { 59 return super.getNamespaceForPrefix(prefix, nc);
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/fileupload/ |
H A D | DeferredFileOutputStream.java | 108 * The temporary file prefix. 110 private String prefix; field in class:DeferredFileOutputStream 153 * @param prefix Prefix to use for the temporary file. 159 public DeferredFileOutputStream(int threshold, String prefix, String suffix, File directory) argument 162 if (prefix == null) { 163 throw new IllegalArgumentException("Temporary file prefix is missing"); 165 this.prefix = prefix; 198 if (prefix != null) { 199 outputFile = File.createTempFile(prefix, suffi [all...] |
/glassfish-3.1.2/admingui/devtests/src/test/java/org/glassfish/admingui/devtests/ |
H A D | MsgSecurityTest.java | 74 String prefix = getTableRowByValue("propertyForm:configs", layer, "col1"); 75 assertEquals(layer, getText(prefix + "col1:authlayer")); 77 assertEquals("", getText(prefix + "col2")); 78 assertEquals("", getText(prefix + "col3")); 79 clickAndWait(prefix + "col1:authlayer",TRIGGER_EDIT_MESSAGE_SECURITY_CONFIGURATION ); 98 String prefix = getTableRowByValue("propertyForm:configs", layer, "col1"); 99 assertEquals(layer, getText(prefix + "col1:authlayer")); 101 assertEquals(providerName, getText(prefix + "col2:defaultprov")); 102 assertEquals("", getText(prefix + "col3")); 103 clickAndWait(prefix [all...] |
H A D | StandaloneTest.java | 91 String prefix = getTableRowByValue(ID_INSTANCE_TABLE, instanceName, "col1"); 93 assertEquals(instanceName, getText(prefix + "col1:link")); 94 assertEquals(instanceName+"-config", getText(prefix + "col3:configlink")); 95 assertEquals(NODE_NAME, getText(prefix + "col5:nodeAgentlink")); 96 assertEquals(STATUS_STOPPED, getText(prefix + "col6")); 97 assertEquals(DEFAULT_WEIGHT, getFieldValue(prefix + "col2:weight")); 100 assertEquals(STATUS_RUNNING, getText(prefix + "col6")); 103 assertEquals(STATUS_STOPPED, getText(prefix + "col6")); 186 String prefix = getTableRowByValue(ID_INSTANCE_TABLE, instanceName, "col1"); 229 String prefix [all...] |
H A D | NodeTest.java | 100 String prefix = getTableRowByValue(ID_NODES_TABLE, nodeName, "col1"); 101 assertEquals(nodeName, getText(prefix + "col1:link")); 102 assertEquals("NodeHOST", getText(prefix + "col2")); 103 assertEquals("SSH", getText(prefix + "colType")); 142 String prefix = getTableRowByValue(ID_NODES_TABLE, nodeName, "col1"); 143 assertEquals(nodeName, getText(prefix + "col1:link")); 144 assertEquals("NodeHOST2", getText(prefix + "col2")); 145 assertEquals("SSH", getText(prefix + "colType")); 193 String prefix = getTableRowByValue(ID_NODES_TABLE, nodeName, "col1"); 194 assertEquals(nodeName, getText(prefix [all...] |
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/base/sfsb/util/ |
H A D | SimpleKeyGenerator.java | 61 protected long prefix; field in class:SimpleKeyGenerator 76 this.prefix = uniquePrefix; 101 return new SimpleSessionKey(prefix, suffix, id); 113 Utility.longToBytes(key.prefix, array, 0); 149 this.prefix = Utility.bytesToInt(hiBytes, 0); 151 this.prefix = 152 (this.prefix << 32) + Utility.bytesToInt(loBytes, 0); 174 long prefix; field in class:SimpleKeyGenerator.SimpleSessionKey 178 public SimpleSessionKey(long prefix, long suffix, int id) { argument 179 this.prefix [all...] |
H A D | ScrambledKeyGenerator.java | 92 this.prefix = Utility.bytesToInt(hiBytes, 0); 93 this.prefix <<= 32; 132 prefix + cachedTime,
|
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/node/ |
H A D | XMLElement.java | 54 private String prefix=null; field in class:XMLElement 64 prefix = qName.substring(0, qName.indexOf(':')); 82 return prefix; 86 * Map a prefix to a namespaceURI based on the namespace context 95 if (prefix!=null) { 96 return prefix+":"+qName;
|
H A D | XMLNode.java | 141 * notify of a new prefix mapping used from this node 143 public void addPrefixMapping(String prefix, String uri); argument 146 * Resolve a QName prefix to its corresponding Namespace URI by 149 public String resolvePrefix(XMLElement element, String prefix); argument
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/logger/ |
H A D | FileLogger.java | 74 * named {prefix}.{date}.{suffix} in a configured directory, with an 109 * The prefix that is added to log file filenames. 111 private String prefix = "catalina."; field in class:FileLogger 173 * Return the log file prefix. 177 return (prefix); 183 * Set the log file prefix. 185 * @param prefix The new log file prefix 187 public void setPrefix(String prefix) { argument 189 String oldPrefix = this.prefix; [all...] |
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/util/jmx/stringifier/ |
H A D | AttributeStringifier.java | 69 final String prefix = attr.getName() + "="; 73 return( prefix + stringValue );
|
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/connectors/service/ |
H A D | ConnectorAdminServiceUtils.java | 113 private static String getReservePrefixedJNDIName(String prefix, String resourceName) { argument 114 return prefix + resourceName; 144 String prefix = null; 146 prefix = ConnectorConstants.POOLS_JNDINAME_PREFIX; 148 prefix = ConnectorConstants.DD_PREFIX; 150 prefix = ConnectorConstants.RESOURCE_JNDINAME_PREFIX; 152 return ((prefix == null) ? reservePrefixedJNDIName : reservePrefixedJNDIName.substring(prefix.length()));
|
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/tests/ejb/elements/ |
H A D | EjbRefTypeElement.java | 98 String prefix = XpathPrefixResolver.fakeXPrefix; 99 xpathQuery = prefix + ":" + "ejb-jar/" + 100 prefix + ":" + "enterprise-beans/" + 101 prefix + ":" + beanType + 102 "[" + prefix + ":ejb-name=\"" + descriptor.getName() 104 prefix + ":" + refStr + "[" + prefix + ":ejb-ref-name=\"" 106 prefix + ":" + "ejb-ref-type";
|
/glassfish-3.1.2/jbi/serviceengine/sun-javaee-engine/src/main/java/com/sun/enterprise/jbi/serviceengine/util/ |
H A D | DOMStreamReader.java | 177 * One entry occupies two spaces (prefix followed by URI.) 218 * Returns the prefix bound to the given URI, or null. 236 * Returns the namespace URI bound by the given prefix. 238 * @param prefix 241 String getNamespaceURI(String prefix) { argument 242 String nsDeclName = prefix.length()==0 ? "xmlns" : "xmlns:"+prefix; 251 if(sp.additionalNamespaces.get(i).equals(prefix)) 319 * Makes sure that the namespace URI/prefix used in the given node is available, 326 String prefix 547 getNamespaceURI(String prefix) argument [all...] |
H A D | XMLStreamReaderToContentHandler.java | 231 String prefix = staxStreamReader.getNamespacePrefix(i); 232 if (prefix == null) { // true for default namespace 233 prefix = ""; 235 saxHandler.endPrefixMapping(prefix); 255 String prefix = qName.getPrefix(); 257 if(prefix==null || prefix.length()==0) 260 rawname = prefix + ':' + qName.getLocalPart(); 302 String prefix = staxStreamReader.getAttributePrefix(i); 304 if(prefix [all...] |
/glassfish-3.1.2/admingui/plugin-service/src/main/java/org/glassfish/admingui/plugin/ |
H A D | ConsolePluginService.java | 180 String prefix = "/" + locale + "/help/"; // prefix (minus module id) 191 insertTOCItem(mergedTOC.getTOCItems(), item, id + prefix); 204 private void insertTOCItem(List<TOCItem> dest, TOCItem item, String prefix) { argument 208 fixTargetPath(item, prefix); 216 insertTOCItem(parent.getTOCItems(), child, prefix); 248 String prefix = "/" + locale + "/help/"; // prefix (minus module id) 259 insertIndexItem(mergedIndex.getIndexItems(), item, id + prefix); 272 private void insertIndexItem(List<IndexItem> dest, IndexItem item, String prefix) { argument 293 fixTargetPath(TOCItem parent, String prefix) argument 303 fixHtmlFileForIndexItem(IndexItem parent, String prefix) argument [all...] |
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/tests/web/ |
H A D | SessionConfigTest.java | 69 String prefix = XpathPrefixResolver.fakeXPrefix; 70 String query = prefix + ":" + "web-app/" + prefix + ":" + "session-config";
|
/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/ |
H A D | SelectorContext.java | 87 public static final String prefix = "java:"; field in class:SelectorContext 93 public static final int prefixLength = prefix.length(); 97 * Initial context prefix. 537 * Given a name (name) relative to this context, and the name (prefix) 545 * @param prefix the name of this context relative to one of its ancestors 546 * @return the composition of prefix and name 549 public Name composeName(Name name, Name prefix) argument 551 prefix = (Name) prefix.clone(); 552 return prefix 564 composeName(String name, String prefix) argument [all...] |
/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/deployment/archive/ |
H A D | Archive.java | 76 * specified prefix. All elements in the enumeration are of 80 * @param prefix the prefix of entries to be included 83 public Enumeration<String> entries(String prefix); argument
|
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/base/stats/ |
H A D | MethodMonitor.java | 75 String prefix = method.getDeclaringClass().getName(); 76 prefix = prefix.replace('.', '_'); 77 this.methodName = prefix + "_" + this.methodName;
|