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

org.jboss.shrinkwrap.descriptor.api.javaeewebservicesclient13.PortComponentRefType Maven / Gradle / Ivy

package org.jboss.shrinkwrap.descriptor.api.javaeewebservicesclient13; 

import java.util.ArrayList;
import java.util.List;
import org.jboss.shrinkwrap.descriptor.api.Child;
import org.jboss.shrinkwrap.descriptor.api.javaeewebservicesclient13.AddressingType;
import org.jboss.shrinkwrap.descriptor.api.javaeewebservicesclient13.RespectBindingType;
/**
 * This interface defines the contract for the  port-component-refType  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 * @author George Gastaldi
 */
public interface PortComponentRefType extends Child { 

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: PortComponentRefType ElementName: xsd:token ElementType : service-endpoint-interface
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the service-endpoint-interface element
    * @param serviceEndpointInterface the value for the element service-endpoint-interface 
    * @return the current instance of PortComponentRefType 
    */
   public PortComponentRefType serviceEndpointInterface(String serviceEndpointInterface);

   /**
    * Returns the service-endpoint-interface element
    * @return the node defined for the element service-endpoint-interface 
    */
   public String getServiceEndpointInterface();

   /**
    * Removes the service-endpoint-interface element 
    * @return the current instance of PortComponentRefType 
    */
   public PortComponentRefType removeServiceEndpointInterface();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: PortComponentRefType ElementName: javaee:xsdBooleanType ElementType : enable-mtom
   // MaxOccurs: -1  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the enable-mtom element
    * @param enableMtom the value for the element enable-mtom 
    * @return the current instance of PortComponentRefType 
    */
   public PortComponentRefType enableMtom(Boolean enableMtom);

   /**
    * Returns the enable-mtom element
    * @return the node defined for the element enable-mtom 
    */
   public Boolean isEnableMtom();

   /**
    * Removes the enable-mtom element 
    * @return the current instance of PortComponentRefType 
    */
   public PortComponentRefType removeEnableMtom();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: PortComponentRefType ElementName: xsd:nonNegativeInteger ElementType : mtom-threshold
   // MaxOccurs: -1  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the mtom-threshold element
    * @param mtomThreshold the value for the element mtom-threshold 
    * @return the current instance of PortComponentRefType 
    */
   public PortComponentRefType mtomThreshold(Integer mtomThreshold);

   /**
    * Returns the mtom-threshold element
    * @return the node defined for the element mtom-threshold 
    */
   public Integer getMtomThreshold();

   /**
    * Removes the mtom-threshold element 
    * @return the current instance of PortComponentRefType 
    */
   public PortComponentRefType removeMtomThreshold();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: PortComponentRefType ElementName: javaee:addressingType ElementType : addressing
   // MaxOccurs: -1  isGeneric: true   isAttribute: false isEnum: false isDataType: false
   // --------------------------------------------------------------------------------------------------------||

   /**
    * If not already created, a new addressing element with the given value will be created.
    * Otherwise, the existing addressing element will be returned.
    * @return  a new or existing instance of AddressingType> 
    */
   public AddressingType> getOrCreateAddressing();

   /**
    * Removes the addressing element 
    * @return the current instance of PortComponentRefType 
    */
   public PortComponentRefType removeAddressing();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: PortComponentRefType ElementName: javaee:respect-bindingType ElementType : respect-binding
   // MaxOccurs: -1  isGeneric: true   isAttribute: false isEnum: false isDataType: false
   // --------------------------------------------------------------------------------------------------------||

   /**
    * If not already created, a new respect-binding element with the given value will be created.
    * Otherwise, the existing respect-binding element will be returned.
    * @return  a new or existing instance of RespectBindingType> 
    */
   public RespectBindingType> getOrCreateRespectBinding();

   /**
    * Removes the respect-binding element 
    * @return the current instance of PortComponentRefType 
    */
   public PortComponentRefType removeRespectBinding();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: PortComponentRefType ElementName: xsd:token ElementType : port-component-link
   // MaxOccurs: -1  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the port-component-link element
    * @param portComponentLink the value for the element port-component-link 
    * @return the current instance of PortComponentRefType 
    */
   public PortComponentRefType portComponentLink(String portComponentLink);

   /**
    * Returns the port-component-link element
    * @return the node defined for the element port-component-link 
    */
   public String getPortComponentLink();

   /**
    * Removes the port-component-link element 
    * @return the current instance of PortComponentRefType 
    */
   public PortComponentRefType removePortComponentLink();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: PortComponentRefType ElementName: xsd:ID ElementType : id
   // MaxOccurs: -  isGeneric: true   isAttribute: true isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the id attribute
    * @param id the value for the attribute id 
    * @return the current instance of PortComponentRefType 
    */
   public PortComponentRefType id(String id);

   /**
    * Returns the id attribute
    * @return the value defined for the attribute id 
    */
   public String getId();

   /**
    * Removes the id attribute 
    * @return the current instance of PortComponentRefType 
    */
   public PortComponentRefType removeId();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy