diff WebServiceExtensionsV1.1/WebServiceToolWorkflow_REST_SOAP/lib/SAWADLParser/src/javax/wadls/extensions/schema/SchemaReference.java @ 0:049760c677de default tip

Galaxy WSExtensions added successfully
author uga-galaxy-group
date Tue, 05 Jul 2011 19:34:18 -0400
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/WebServiceExtensionsV1.1/WebServiceToolWorkflow_REST_SOAP/lib/SAWADLParser/src/javax/wadls/extensions/schema/SchemaReference.java	Tue Jul 05 19:34:18 2011 -0400
@@ -0,0 +1,60 @@
+/*
+ * (c) Copyright IBM Corp 2004, 2005 
+ */
+
+package javax.wadls.extensions.schema;
+
+
+import java.io.Serializable;
+
+import javax.wadls.extensions.schema.Schema;
+
+/**
+ * Represents an include or a redefine element within a schema element.
+ * 
+ * @author Jeremy Hughes <hughesj@uk.ibm.com>
+ */
+public interface SchemaReference extends Serializable
+{
+    /**
+     * Gets the ID attribute of the referenced schema.
+     * 
+     * @return the id string 
+     */
+    public abstract String getId();
+
+    /**
+     * Sets the ID attribute of the referenced schema.
+     * 
+     * @param id The id string to set.
+     */
+    public abstract void setId(String id);
+
+    /**
+     * Gets the schemaLocation attribute of the referenced schema.
+     * 
+     * @return the schemaLocation string.
+     */
+    public abstract String getSchemaLocationURI();
+
+    /**
+     * Sets the schemaLocation attribute of the referenced schema.
+     * 
+     * @param schemaLocation The schemaLocation string to set.
+     */
+    public abstract void setSchemaLocationURI(String schemaLocation);
+
+    /**
+     * Gets the referenced schema, represented as a LightWeightSchema.
+     * 
+     * @return the referenced LightWeightSchema.
+     */
+    public abstract Schema getReferencedSchema();
+
+    /**
+     * Sets the referenced schema to a LightWeightSchema.
+     * 
+     * @param referencedSchema The LightWeightSchema to set.
+     */
+    public abstract void setReferencedSchema(Schema referencedSchema);
+}
\ No newline at end of file