Searched defs:systemID (Results 1 - 3 of 3) sorted by relevance

/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/node/
H A DSaxParserHandlerBundled.java85 * @param systemID system ID of the requested entity
89 public InputSource resolveEntity(String publicID, String systemID) throws SAXException { argument
98 " system id = " + systemID);
102 if (systemID==null || systemID.lastIndexOf('/')==systemID.length()) {
109 result = openSchemaSource(systemID);
115 result = new InputSource(systemID);
124 } else if (systemID != null) {
130 result = openSchemaSource(systemID);
154 openSchemaSource(String systemID) argument
168 openInputSource(final String localRoot, final String systemID) argument
[all...]
H A DSaxParserHandler.java216 public static void registerMapping(String publicID, String systemID) { argument
217 getMapping().put(publicID, systemID);
221 public InputSource resolveEntity(String publicID, String systemID) throws SAXException { argument
224 DOLUtils.getDefaultLogger().fine("Asked to resolve " + publicID + " system id = " + systemID);
228 if (systemID==null || systemID.lastIndexOf('/')==systemID.length()) {
232 String fileName = getSchemaURLFor(systemID.substring(systemID.lastIndexOf('/')+1));
236 fileName = systemID;
[all...]
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/util/
H A DXMLValidationHandler.java136 public InputSource resolveEntity(String publicID, String systemID) throws SAXException { argument
140 if (systemID==null || systemID.lastIndexOf('/')==systemID.length()) {
144 String fileName = getSchemaURLFor(systemID.substring(systemID.lastIndexOf('/')+1));
148 fileName = systemID;

Completed in 354 milliseconds