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

org.jboss.shrinkwrap.descriptor.api.connector15.AdminobjectType Maven / Gradle / Ivy

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

import java.util.ArrayList;
import java.util.List;
import org.jboss.shrinkwrap.descriptor.api.Child;
import org.jboss.shrinkwrap.descriptor.api.connector15.ConfigPropertyType;
import org.jboss.shrinkwrap.descriptor.api.connector.*;
import org.jboss.shrinkwrap.descriptor.api.connector.JeeAdminobjectCommonType;

import org.jboss.shrinkwrap.descriptor.api.connector15.ConfigPropertyType;/**
 * This interface defines the contract for the  adminobjectType  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 * @author George Gastaldi
 */
public interface AdminobjectType extends Child, 
    JeeAdminobjectCommonType,
    ConfigPropertyType>> { 

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: AdminobjectType ElementName: xsd:token ElementType : adminobject-interface
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the adminobject-interface element
    * @param adminobjectInterface the value for the element adminobject-interface 
    * @return the current instance of AdminobjectType 
    */
   public AdminobjectType adminobjectInterface(String adminobjectInterface);

   /**
    * Returns the adminobject-interface element
    * @return the node defined for the element adminobject-interface 
    */
   public String getAdminobjectInterface();

   /**
    * Removes the adminobject-interface element 
    * @return the current instance of AdminobjectType 
    */
   public AdminobjectType removeAdminobjectInterface();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: AdminobjectType ElementName: xsd:token ElementType : adminobject-class
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the adminobject-class element
    * @param adminobjectClass the value for the element adminobject-class 
    * @return the current instance of AdminobjectType 
    */
   public AdminobjectType adminobjectClass(String adminobjectClass);

   /**
    * Returns the adminobject-class element
    * @return the node defined for the element adminobject-class 
    */
   public String getAdminobjectClass();

   /**
    * Removes the adminobject-class element 
    * @return the current instance of AdminobjectType 
    */
   public AdminobjectType removeAdminobjectClass();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: AdminobjectType ElementName: j2ee:config-propertyType ElementType : config-property
   // MaxOccurs: -unbounded  isGeneric: true   isAttribute: false isEnum: false isDataType: false
   // --------------------------------------------------------------------------------------------------------||

   /**
    * If not already created, a new config-property element will be created and returned.
    * Otherwise, the first existing config-property element will be returned.
    * @return the instance defined for the element config-property 
    */
   public ConfigPropertyType> getOrCreateConfigProperty();

   /**
    * Creates a new config-property element 
    * @return the new created instance of ConfigPropertyType> 
    */
   public ConfigPropertyType> createConfigProperty();

   /**
    * Returns all config-property elements
    * @return list of config-property 
    */
   public List>> getAllConfigProperty();

   /**
    * Removes all config-property elements 
    * @return the current instance of ConfigPropertyType> 
    */
   public AdminobjectType removeAllConfigProperty();

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy