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

org.jboss.shrinkwrap.descriptor.api.application6.WebType Maven / Gradle / Ivy

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

import java.util.ArrayList;
import java.util.List;
import org.jboss.shrinkwrap.descriptor.api.Child;
import org.jboss.shrinkwrap.descriptor.api.application.*;
import org.jboss.shrinkwrap.descriptor.api.application.JavaeeWebCommonType;
/**
 * This interface defines the contract for the  webType  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 * @author George Gastaldi
 */
public interface WebType extends Child, 
    JavaeeWebCommonType> { 

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: WebType ElementName: xsd:token ElementType : web-uri
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the web-uri element
    * @param webUri the value for the element web-uri 
    * @return the current instance of WebType 
    */
   public WebType webUri(String webUri);

   /**
    * Returns the web-uri element
    * @return the node defined for the element web-uri 
    */
   public String getWebUri();

   /**
    * Removes the web-uri element 
    * @return the current instance of WebType 
    */
   public WebType removeWebUri();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: WebType ElementName: xsd:token ElementType : context-root
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the context-root element
    * @param contextRoot the value for the element context-root 
    * @return the current instance of WebType 
    */
   public WebType contextRoot(String contextRoot);

   /**
    * Returns the context-root element
    * @return the node defined for the element context-root 
    */
   public String getContextRoot();

   /**
    * Removes the context-root element 
    * @return the current instance of WebType 
    */
   public WebType removeContextRoot();

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy