Searched refs:schema (Results 126 - 137 of 137) sorted by relevance

123456

/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/xsom/impl/util/
H A DSchemaWriter.java67 * a schema component. This is not intended to be a fully-fledged
68 * round-trippable schema writer.
122 schema((XSSchema)itr.next());
127 public void schema( XSSchema s ) { method in class:SchemaWriter
133 println(MessageFormat.format("<schema targetNamespace=\"{0}\">", s.getTargetNamespace()));
163 println("</schema>");
/openjdk10/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/processor/modeler/wsdl/
H A DPseudoSchemaBuilder.java35 import com.sun.tools.internal.ws.wsdl.document.schema.SchemaKinds;
67 " <bindings scd=\"x-schema::wsa\" if-exists=\"true\">\n" +
68 //comment the following, otw JAXB won't generate ObjectFactory, classes from wsa schema. See JAX-WS-804
84 " <bindings scd=\"x-schema::wsa\" if-exists=\"true\">\n" +
85 //comment the following, otw JAXB won't generate ObjectFactory, classes from wsa schema. See JAX-WS-804
96 private final static String sysId = "http://dummy.pseudo-schema#schema";
187 // No pseudo schema required for doc/lit
246 "<xs:schema xmlns:xs=''http://www.w3.org/2001/XMLSchema''" +
273 //rpclit wsdl:part must reference schema typ
[all...]
H A DWSDLModelerBase.java46 import com.sun.tools.internal.ws.wsdl.document.schema.SchemaKinds;
H A DWSDLModeler.java50 import com.sun.tools.internal.ws.wsdl.document.schema.SchemaKinds;
106 // check for a schema element with the wrong namespace URI
107 if (name.getLocalPart().equals("schema")
2270 //ignore the package customization in the wsdl and schema bidnings
2278 //create pseudo schema for async operations(if any) response bean
2280 for (InputSource schema : schemas) {
2281 tempJaxbModelBuilder.getJAXBSchemaCompiler().parseSchema(schema);
/openjdk10/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/wsdl/parser/
H A DDOMForest.java32 import com.sun.tools.internal.ws.wsdl.document.schema.SchemaConstants;
63 * To correctly feed documents to a schema parser, we need to remember
88 * inlined schema elements inside wsdl:type section
205 NodeList schemas = doc.getElementsByTagNameNS(SchemaConstants.NS_XSD, "schema");
H A DMetadataFinder.java36 import com.sun.tools.internal.ws.wsdl.document.schema.SchemaConstants;
122 NodeList schemas = doc.getElementsByTagNameNS(SchemaConstants.NS_XSD, "schema");
H A DWSDLParser.java55 import com.sun.tools.internal.ws.wsdl.document.schema.SchemaConstants;
56 import com.sun.tools.internal.ws.wsdl.document.schema.SchemaKinds;
234 //at this poinjt we expect a wsdl or schema document to be fully qualified
272 //add all the wsdl:type elements to latter make a list of all the schema elements
338 //Ignore any extensibility elements, WS-I BP 1.1 Profiled WSDL 1.1 schema allows extension elements here.
908 // according to the schema in the WSDL 1.1 spec, an import can have a documentation element
/openjdk10/jaxp/test/javax/xml/jaxp/unittest/catalog/
H A DCatalogSupportBase.java152 + "<!DOCTYPE xs:schema PUBLIC \"-//W3C//DTD XMLSCHEMA 200102//EN\" \"pathto/XMLSchema.dtd\" >"
153 + "<xs:schema targetNamespace=\"http://www.w3.org/2001/XMLSchema\" blockDefault=\"#all\" "
162 + "</xs:schema>";
167 + "<xs:schema targetNamespace=\"http://www.w3.org/2001/XMLSchema\" "
183 + " as declared on 'schema' and 'documentation' below"
187 + " <xs:element name=\"schema\" id=\"schema\">"
196 + "</xs:schema>";
201 + "<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\""
217 + "</xsd:schema>";
[all...]
H A DCatalogTest.java161 Schema schema = factory.newSchema(schemaSource);
232 catalog filepath, schema source file
/openjdk10/jdk/src/java.naming/share/classes/com/sun/jndi/ldap/
H A DLdapSchemaParser.java33 * Netscape's 3.1 servers have some schema bugs:
45 // names of attribute IDs in the LDAP schema entry
51 // information for creating internal nodes in JNDI schema tree
69 // special tokens used in LDAP schema descriptions
369 // tolerate a schema that omits the trailing space
440 // otherwise it's a schema element with a quoted string value
487 * ; object descriptors used as schema element names
570 // %%% workaround for Netscape schema bug
671 // Methods that are used for translating a node in the schema tree
728 "Problem with schema tre
[all...]
/openjdk10/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/wscompile/
H A DWsimportOptions.java34 import com.sun.tools.internal.ws.wsdl.document.schema.SchemaConstants;
141 * JAXB's {@link SchemaCompiler} to be used for handling the schema portion.
286 * schema component.
514 * Adds a new input schema.
596 reader.getName().equals(new QName(SchemaConstants.NS_XSD, "schema"))) {
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/wsdl/writer/
H A DWSDLGenerator.java1050 * Creates the {@link Result} object used by JAXB to generate a schema for the
1052 * @param namespaceUri The namespace for the schema being generated
1053 * @param suggestedFileName the JAXB suggested file name for the schema file
1054 * @return the {@link Result} for JAXB to generate the schema into
1066 // System.out.println("schema file: "+fileNameHolder.value);
1075 com.sun.xml.internal.ws.wsdl.writer.document.xsd.Import _import = types.schema()._import();
1092 // // JAXB doesn't have to generate it, a schema is already available
1093 // com.sun.xml.internal.ws.wsdl.writer.document.xsd.Import _import = types.schema()._import().namespace(namespaceUri);
1096 // Let JAXB write the schema directly into wsdl's TypedXmlWriter
1185 * Creates the {@link Result} object used by JAXB to generate a schema fo
[all...]

Completed in 200 milliseconds

123456