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

org.jboss.shrinkwrap.descriptor.api.connector17.MessagelistenerType Maven / Gradle / Ivy

The newest version!
package org.jboss.shrinkwrap.descriptor.api.connector17; 

import java.util.ArrayList;
import java.util.List;
import org.jboss.shrinkwrap.descriptor.api.Child;
import org.jboss.shrinkwrap.descriptor.api.connector17.ActivationspecType;
import org.jboss.shrinkwrap.descriptor.api.connector.*;
import org.jboss.shrinkwrap.descriptor.api.connector.JeeMessagelistenerCommonType;

import org.jboss.shrinkwrap.descriptor.api.connector17.ActivationspecType;/**
 * This interface defines the contract for the  messagelistenerType  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 */
public interface MessagelistenerType extends Child, 
    JeeMessagelistenerCommonType,
    ActivationspecType>> { 

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: MessagelistenerType ElementName: xsd:token ElementType : messagelistener-type
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the messagelistener-type element
    * @param messagelistenerType the value for the element messagelistener-type 
    * @return the current instance of MessagelistenerType 
    */
   public MessagelistenerType messagelistenerType(String messagelistenerType);

   /**
    * Returns the messagelistener-type element
    * @return the node defined for the element messagelistener-type 
    */
   public String getMessagelistenerType();

   /**
    * Removes the messagelistener-type element 
    * @return the current instance of MessagelistenerType 
    */
   public MessagelistenerType removeMessagelistenerType();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: MessagelistenerType ElementName: javaee:activationspecType ElementType : activationspec
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: false
   // --------------------------------------------------------------------------------------------------------||

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

   /**
    * Removes the activationspec element 
    * @return the current instance of MessagelistenerType 
    */
   public MessagelistenerType removeActivationspec();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: MessagelistenerType 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 MessagelistenerType 
    */
   public MessagelistenerType 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 MessagelistenerType 
    */
   public MessagelistenerType removeId();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy