Skip navigation links

Java API Reference for Oracle Infrastructure Web Services
11
Release 1 (11.1.1)

E10654-02


oracle.webservices
Interface WebServicesDescriptorInfo


public interface WebServicesDescriptorInfo

Implementations of this interface provide encapsulate web services deployment descriptor information.


Method Summary
 String getContextRoot()
          Get the context root associated with the web services application.
 Collection getEndpoints()
          Get a collection of all the endpoints defined by this descriptor.
 WebServiceEndpointInfo getWebServiceEndpointInfo(String endpointName)
          Get information about the web service endpoint with the specified name.
 Collection getWebServices()
          Get a collection of all the web services defined by this descriptor.
 boolean isEJBWebService()
          Determine whether this descriptor includes EJB-based web services.

 

Method Detail

getContextRoot

String getContextRoot()
Get the context root associated with the web services application.
Returns:
The context root.

isEJBWebService

boolean isEJBWebService()
Determine whether this descriptor includes EJB-based web services.
Returns:
true if EJB-based web services are included; Otherwise, false.

getWebServices

Collection getWebServices()
Get a collection of all the web services defined by this descriptor.
Returns:
A Collection of all the web services described by this descriptor.

getEndpoints

Collection getEndpoints()
Get a collection of all the endpoints defined by this descriptor.
Returns:
A Collection of WebServiceEndpointInfo instances.

getWebServiceEndpointInfo

WebServiceEndpointInfo getWebServiceEndpointInfo(String endpointName)
Get information about the web service endpoint with the specified name.
Parameters:
endpointName - The name of the desired endpoint.
Returns:
The WebServiceEndpointInfo instance for the specified endpoint name.

Skip navigation links

Copyright © 2006, 2009 Oracle. All Rights Reserved.