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

org.jboss.shrinkwrap.descriptor.api.connector10.License Maven / Gradle / Ivy

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

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

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: License ElementName: xsd:string ElementType : description
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the description element
    * @param description the value for the element description 
    * @return the current instance of License 
    */
   public License description(String description);

   /**
    * Returns the description element
    * @return the node defined for the element description 
    */
   public String getDescription();

   /**
    * Removes the description element 
    * @return the current instance of License 
    */
   public License removeDescription();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: License ElementName: xsd:string ElementType : license-required
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the license-required element
    * @param licenseRequired the value for the element license-required 
    * @return the current instance of License 
    */
   public License licenseRequired(String licenseRequired);

   /**
    * Returns the license-required element
    * @return the node defined for the element license-required 
    */
   public String getLicenseRequired();

   /**
    * Removes the license-required element 
    * @return the current instance of License 
    */
   public License removeLicenseRequired();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy