Apache CXF API

org.apache.cxf.jaxws.javaee
Class ServiceRefHandlerChainType

java.lang.Object
  extended by org.apache.cxf.jaxws.javaee.ServiceRefHandlerChainType

public class ServiceRefHandlerChainType
extends Object

The handler-chain element defines the handlerchain. Handlerchain can be defined such that the handlers in the handlerchain operate,all ports of a service, on a specific port or on a list of protocol-bindings. The choice of elements service-name-pattern, port-name-pattern and protocol-bindings are used to specify whether the handlers in handler-chain are for a service, port or protocol binding. If none of these choices are specified with the handler-chain element then the handlers specified in the handler-chain will be applied on everything.

Java class for service-ref_handler-chainType complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="service-ref_handler-chainType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <choice minOccurs="0">
           <element name="service-name-pattern" type="{http://java.sun.com/xml/ns/javaee}service-ref_qname-pattern"/>
           <element name="port-name-pattern" type="{http://java.sun.com/xml/ns/javaee}service-ref_qname-pattern"/>
           <element name="protocol-bindings" type="{http://java.sun.com/xml/ns/javaee}service-ref_protocol-bindingListType"/>
         </choice>
         <element name="handler" type="{http://java.sun.com/xml/ns/javaee}service-ref_handlerType" maxOccurs="unbounded"/>
       </sequence>
       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
     </restriction>
   </complexContent>
 </complexType>
 


Field Summary
protected  List<ServiceRefHandlerType> handler
           
protected  String id
           
protected  String portNamePattern
           
protected  List<String> protocolBindings
           
protected  String serviceNamePattern
           
 
Constructor Summary
ServiceRefHandlerChainType()
           
 
Method Summary
 List<ServiceRefHandlerType> getHandler()
          Gets the value of the handler property.
 String getId()
          Gets the value of the id property.
 String getPortNamePattern()
          Gets the value of the portNamePattern property.
 List<String> getProtocolBindings()
          Gets the value of the protocolBindings property.
 String getServiceNamePattern()
          Gets the value of the serviceNamePattern property.
 void setId(String value)
          Sets the value of the id property.
 void setPortNamePattern(String value)
          Sets the value of the portNamePattern property.
 void setServiceNamePattern(String value)
          Sets the value of the serviceNamePattern property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

serviceNamePattern

protected String serviceNamePattern

portNamePattern

protected String portNamePattern

protocolBindings

protected List<String> protocolBindings

handler

protected List<ServiceRefHandlerType> handler

id

protected String id
Constructor Detail

ServiceRefHandlerChainType

public ServiceRefHandlerChainType()
Method Detail

getServiceNamePattern

public String getServiceNamePattern()
Gets the value of the serviceNamePattern property.

Returns:
possible object is String

setServiceNamePattern

public void setServiceNamePattern(String value)
Sets the value of the serviceNamePattern property.

Parameters:
value - allowed object is String

getPortNamePattern

public String getPortNamePattern()
Gets the value of the portNamePattern property.

Returns:
possible object is String

setPortNamePattern

public void setPortNamePattern(String value)
Sets the value of the portNamePattern property.

Parameters:
value - allowed object is String

getProtocolBindings

public List<String> getProtocolBindings()
Gets the value of the protocolBindings property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the protocolBindings property.

For example, to add a new item, do as follows:

    getProtocolBindings().add(newItem);
 

Objects of the following type(s) are allowed in the list String


getHandler

public List<ServiceRefHandlerType> getHandler()
Gets the value of the handler property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the handler property.

For example, to add a new item, do as follows:

    getHandler().add(newItem);
 

Objects of the following type(s) are allowed in the list ServiceRefHandlerType


getId

public String getId()
Gets the value of the id property.

Returns:
possible object is String

setId

public void setId(String value)
Sets the value of the id property.

Parameters:
value - allowed object is String

Apache CXF API

Apache CXF