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

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

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

import java.util.ArrayList;
import java.util.List;
import org.jboss.shrinkwrap.descriptor.api.Child;
/**
 * 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: 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