Searched defs:docs (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DServiceDefinitionImpl.java50 private final List<SDDocumentImpl> docs; field in class:ServiceDefinitionImpl
63 * @param docs
68 public ServiceDefinitionImpl(List<SDDocumentImpl> docs, @NotNull SDDocumentImpl primaryWsdl) { argument
69 assert docs.contains(primaryWsdl);
70 this.docs = docs;
73 this.bySystemId = new HashMap<String, SDDocumentImpl>(docs.size());
74 for (SDDocumentImpl doc : docs) {
98 return (Iterator)docs.iterator();
H A DWSDLGenResolver.java54 private final List<SDDocumentImpl> docs; field in class:WSDLGenResolver
69 public WSDLGenResolver(@NotNull List<SDDocumentImpl> docs,QName serviceName,QName portTypeName) { argument
70 this.docs = docs;
74 for (SDDocumentImpl doc : docs) {
179 * Converts SDDocumentSource to SDDocumentImpl and updates original docs. It
192 docs.add(docImpl);
H A DEndpointFactory.java417 private static SDDocumentImpl generateWSDL(WSBinding binding, AbstractSEIModelImpl seiModel, List<SDDocumentImpl> docs, argument
430 WSDLGenResolver wsdlResolver = new WSDLGenResolver(docs,seiModel.getServiceQName(),seiModel.getPortTypeName());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/pipe/
H A DAbstractSchemaValidationTube.java140 final Map<String, SDDocument> docs = new HashMap<String, SDDocument>(); field in class:AbstractSchemaValidationTube.MetadataResolverImpl
151 docs.put(doc.getURL().toExternalForm(), doc);
165 docs.put(systemId, sdoc);
179 SDDocument sdi = docs.get(systemId);
188 docs.put(systemId, sdi);
203 doc = docs.get(rel.toString());
310 protected Source[] getSchemaSources(Iterable<SDDocument> docs, MetadataResolverImpl mdresolver) { argument
319 for(SDDocument sdoc: docs) {
447 * @param docs collection of systemId for the schema documents that have the
452 private @Nullable Source createSameTnsPseudoSchema(String tns, Collection<String> docs, Strin argument
486 createMasterPseudoSchema(Map<String, String> docs) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/
H A DDeploymentDescriptorParser.java103 private final Map<String,SDDocumentSource> docs = new HashMap<String,SDDocumentSource>(); field in class:DeploymentDescriptorParser
123 logger.fine("war metadata="+docs);
179 docs.put(res.toString(),SDDocumentSource.create(res));
237 // TODO use 'docs' as the metadata. If wsdl is non-null it's the primary.
246 primaryWSDL, docs.values(), createEntityResolver(),false
378 SDDocumentSource docInfo = docs.get(wsdl.toExternalForm());

Completed in 64 milliseconds