comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:d5cd409b8a18
1 /*
2 * (c) Copyright IBM Corp 2004, 2005
3 */
4
5 package edu.uga.cs.lsdis.meteors.wadls.extensions.schema;
6
7 import javax.wadls.extensions.schema.SchemaImport;
8
9 /**
10 * @author Jeremy Hughes <hughesj@uk.ibm.com>
11 */
12 public class SchemaImportImpl extends SchemaReferenceImpl implements SchemaImport
13 {
14 public static final long serialVersionUID = 1;
15
16 private String namespace = null;
17
18 /**
19 * @return Returns the namespace.
20 */
21 public String getNamespaceURI()
22 {
23 return this.namespace;
24 }
25
26 /**
27 * @param namespace The namespace to set.
28 */
29 public void setNamespaceURI(String namespace)
30 {
31 this.namespace = namespace;
32 }
33 }