Package com.ibm.wsdl.extensions.schema
Class SchemaReferenceImpl
- java.lang.Object
-
- com.ibm.wsdl.extensions.schema.SchemaReferenceImpl
-
- All Implemented Interfaces:
java.io.Serializable,SchemaReference
- Direct Known Subclasses:
SchemaImportImpl
public class SchemaReferenceImpl extends java.lang.Object implements SchemaReference
- Author:
- Jeremy Hughes
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static longserialVersionUID
-
Constructor Summary
Constructors Constructor Description SchemaReferenceImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetId()Gets the ID attribute of the referenced schema.SchemagetReferencedSchema()Gets the referenced schema, represented as a LightWeightSchema.java.lang.StringgetSchemaLocationURI()Gets the schemaLocation attribute of the referenced schema.voidsetId(java.lang.String id)Sets the ID attribute of the referenced schema.voidsetReferencedSchema(Schema referencedSchema)Sets the referenced schema to a LightWeightSchema.voidsetSchemaLocationURI(java.lang.String schemaLocation)Sets the schemaLocation attribute of the referenced schema.
-
-
-
Field Detail
-
serialVersionUID
public static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Method Detail
-
getId
public java.lang.String getId()
Description copied from interface:SchemaReferenceGets the ID attribute of the referenced schema.- Specified by:
getIdin interfaceSchemaReference- Returns:
- Returns the id.
-
setId
public void setId(java.lang.String id)
Description copied from interface:SchemaReferenceSets the ID attribute of the referenced schema.- Specified by:
setIdin interfaceSchemaReference- Parameters:
id- The id to set.
-
getSchemaLocationURI
public java.lang.String getSchemaLocationURI()
Description copied from interface:SchemaReferenceGets the schemaLocation attribute of the referenced schema.- Specified by:
getSchemaLocationURIin interfaceSchemaReference- Returns:
- Returns the schemaLocation.
-
setSchemaLocationURI
public void setSchemaLocationURI(java.lang.String schemaLocation)
Description copied from interface:SchemaReferenceSets the schemaLocation attribute of the referenced schema.- Specified by:
setSchemaLocationURIin interfaceSchemaReference- Parameters:
schemaLocation- The schemaLocation to set.
-
getReferencedSchema
public Schema getReferencedSchema()
Description copied from interface:SchemaReferenceGets the referenced schema, represented as a LightWeightSchema.- Specified by:
getReferencedSchemain interfaceSchemaReference- Returns:
- Returns the importedSchema.
-
setReferencedSchema
public void setReferencedSchema(Schema referencedSchema)
Description copied from interface:SchemaReferenceSets the referenced schema to a LightWeightSchema.- Specified by:
setReferencedSchemain interfaceSchemaReference- Parameters:
referencedSchema- The importedSchema to set.
-
-