diff WebServiceToolWorkflow/lib/SAWADLParser/src/edu/uga/cs/lsdis/meteors/wadls/extensions/schema/SchemaImportImpl.java @ 0:d5cd409b8a18 default tip

Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
author ganjoo
date Tue, 07 Jun 2011 18:00:50 -0400
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/WebServiceToolWorkflow/lib/SAWADLParser/src/edu/uga/cs/lsdis/meteors/wadls/extensions/schema/SchemaImportImpl.java	Tue Jun 07 18:00:50 2011 -0400
@@ -0,0 +1,33 @@
+/*
+ * (c) Copyright IBM Corp 2004, 2005
+ */
+
+package edu.uga.cs.lsdis.meteors.wadls.extensions.schema;
+
+import javax.wadls.extensions.schema.SchemaImport;
+
+/**
+ * @author Jeremy Hughes <hughesj@uk.ibm.com>
+ */
+public class SchemaImportImpl extends SchemaReferenceImpl implements SchemaImport
+{
+  public static final long serialVersionUID = 1;
+
+  private String namespace = null;
+
+  /**
+   * @return Returns the namespace.
+   */
+  public String getNamespaceURI()
+  {
+    return this.namespace;
+  }
+
+  /**
+   * @param namespace The namespace to set.
+   */
+  public void setNamespaceURI(String namespace)
+  {
+    this.namespace = namespace;
+  }
+}
\ No newline at end of file