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 (hughesj@uk.ibm.com)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description SchemaReferenceImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getId()
Gets the ID attribute of the referenced schema.Schema
getReferencedSchema()
Gets the referenced schema, represented as a LightWeightSchema.java.lang.String
getSchemaLocationURI()
Gets the schemaLocation attribute of the referenced schema.void
setId(java.lang.String id)
Sets the ID attribute of the referenced schema.void
setReferencedSchema(Schema referencedSchema)
Sets the referenced schema to a LightWeightSchema.void
setSchemaLocationURI(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:SchemaReference
Gets the ID attribute of the referenced schema.- Specified by:
getId
in interfaceSchemaReference
- Returns:
- Returns the id.
-
setId
public void setId(java.lang.String id)
Description copied from interface:SchemaReference
Sets the ID attribute of the referenced schema.- Specified by:
setId
in interfaceSchemaReference
- Parameters:
id
- The id to set.
-
getSchemaLocationURI
public java.lang.String getSchemaLocationURI()
Description copied from interface:SchemaReference
Gets the schemaLocation attribute of the referenced schema.- Specified by:
getSchemaLocationURI
in interfaceSchemaReference
- Returns:
- Returns the schemaLocation.
-
setSchemaLocationURI
public void setSchemaLocationURI(java.lang.String schemaLocation)
Description copied from interface:SchemaReference
Sets the schemaLocation attribute of the referenced schema.- Specified by:
setSchemaLocationURI
in interfaceSchemaReference
- Parameters:
schemaLocation
- The schemaLocation to set.
-
getReferencedSchema
public Schema getReferencedSchema()
Description copied from interface:SchemaReference
Gets the referenced schema, represented as a LightWeightSchema.- Specified by:
getReferencedSchema
in interfaceSchemaReference
- Returns:
- Returns the importedSchema.
-
setReferencedSchema
public void setReferencedSchema(Schema referencedSchema)
Description copied from interface:SchemaReference
Sets the referenced schema to a LightWeightSchema.- Specified by:
setReferencedSchema
in interfaceSchemaReference
- Parameters:
referencedSchema
- The importedSchema to set.
-
-