Class DdlScript
java.lang.Object
io.ebeaninternal.dbmigration.migration.DdlScript
Java class for ddl-script complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ddl-script">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="ddl" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
</sequence>
<attribute name="platforms" type="{http://www.w3.org/2001/XMLSchema}string" />
</restriction>
</complexContent>
</complexType>
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetDdl()Gets the value of the ddl property.Gets the value of the platforms property.voidsetPlatforms(String value)Sets the value of the platforms property.
-
Constructor Details
-
DdlScript
public DdlScript()
-
-
Method Details
-
getDdl
Gets the value of the ddl property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the ddl property.For example, to add a new item, do as follows:
getDdl().add(newItem);Objects of the following type(s) are allowed in the list
String -
getPlatforms
Gets the value of the platforms property.- Returns:
- possible object is
String
-
setPlatforms
Sets the value of the platforms property.- Parameters:
value- allowed object isString
-