Class DdlScript

java.lang.Object
io.ebeaninternal.extraddl.model.DdlScript

public class DdlScript extends Object

Java class for anonymous complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType>
   <simpleContent>
     <extension base="<http://www.w3.org/2001/XMLSchema>string">
       <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="platforms" type="{http://www.w3.org/2001/XMLSchema}string" />
     </extension>
   </simpleContent>
 </complexType>
 
  • Field Details

    • value

      protected String value
    • name

      protected String name
    • platforms

      protected String platforms
    • drop

      protected boolean drop
    • init

      protected boolean init
  • Constructor Details

    • DdlScript

      public DdlScript()
  • Method Details

    • getValue

      public String getValue()
      Gets the value of the value property.
      Returns:
      possible object is String
    • setValue

      public void setValue(String value)
      Sets the value of the value property.
      Parameters:
      value - allowed object is String
    • getName

      public String getName()
      Gets the value of the name property.
      Returns:
      possible object is String
    • setName

      public void setName(String value)
      Sets the value of the name property.
      Parameters:
      value - allowed object is String
    • getPlatforms

      public String getPlatforms()
      Gets the value of the platforms property.
      Returns:
      possible object is String
    • setPlatforms

      public void setPlatforms(String value)
      Sets the value of the platforms property.
      Parameters:
      value - allowed object is String
    • isDrop

      public boolean isDrop()
      Return if this a drop script.
    • setDrop

      public void setDrop(boolean drop)
      Sets that this is a drop script.
    • isInit

      public boolean isInit()
      Return if this a init script.
    • setInit

      public void setInit(boolean init)
      Sets that this is a init script.