oracle.wsdl.internal
Interface Import

All Superinterfaces:
java.io.Serializable, WSDLElement

public interface Import
extends WSDLElement

Import represents an import inside a WSDL definitions. The use of import element allows the separation of the different elements of a service definition into independent documents which can be reusable, according to different levels of abstraction.


Method Summary
TypeMethod
 Definitions getDefinitions()
          Get imported definitions.
 java.lang.String getLocation()
          Get the location of imported document
 java.lang.String getNamespaceURI()
          Get the namespace URI that is the target namespace of imported document.
 void setDefinitions(Definitions definitions)
          Set the definition as imported document
 void setLocation(java.lang.String location)
          Set the location of imported document
 void setNamespaceURI(java.lang.String namespaceURI)
          Set the namespace URI
 
Methods inherited from interface oracle.wsdl.internal.WSDLElement
getOwnerDefinitions, getParent, serialize
 

Method Detail

getNamespaceURI

public java.lang.String getNamespaceURI()
Get the namespace URI that is the target namespace of imported document.
Returns:
the namespace URI

setNamespaceURI

public void setNamespaceURI(java.lang.String namespaceURI)
Set the namespace URI
Parameters:
namespaceURI - the namespaceURI to set

getLocation

public java.lang.String getLocation()
Get the location of imported document
Returns:
the location which is a URI

setLocation

public void setLocation(java.lang.String location)
Set the location of imported document
Parameters:
location - the URI of the document

getDefinitions

public Definitions getDefinitions()
Get imported definitions. Imported type defintions such as XML Schema will be chidren elements of the types element.
Returns:
an imported definitions

setDefinitions

public void setDefinitions(Definitions definitions)
Set the definition as imported document
Parameters:
definitions - the definitions to set


Copyright © 2001 Oracle SOAP. All Rights Reserved.