All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ibm.wsdl.extensions.schema.SchemaImportImpl Maven / Gradle / Ivy

There is a newer version: 5.0.22
Show newest version
/*
 * (c) Copyright IBM Corp 2004, 2005
 */

package com.ibm.wsdl.extensions.schema;

import javax.wsdl.extensions.schema.SchemaImport;

/**
 * @author Jeremy Hughes 
 */
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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy