001package io.ebeaninternal.dbmigration.migration;
002
003import javax.xml.bind.annotation.XmlAccessType;
004import javax.xml.bind.annotation.XmlAccessorType;
005import javax.xml.bind.annotation.XmlRootElement;
006import javax.xml.bind.annotation.XmlType;
007import javax.xml.bind.annotation.XmlValue;
008
009
010/**
011 * <p>Java class for anonymous complex type.
012 *
013 * <p>The following schema fragment specifies the expected content contained within this class.
014 *
015 * <pre>
016 * &lt;complexType>
017 *   &lt;simpleContent>
018 *     &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>string">
019 *     &lt;/extension>
020 *   &lt;/simpleContent>
021 * &lt;/complexType>
022 * </pre>
023 */
024@XmlAccessorType(XmlAccessType.FIELD)
025@XmlType(name = "", propOrder = {
026  "value"
027})
028@XmlRootElement(name = "apply")
029public class Apply {
030
031  @XmlValue
032  protected String value;
033
034  /**
035   * Gets the value of the value property.
036   *
037   * @return possible object is
038   * {@link String }
039   */
040  public String getValue() {
041    return value;
042  }
043
044  /**
045   * Sets the value of the value property.
046   *
047   * @param value allowed object is
048   *              {@link String }
049   */
050  public void setValue(String value) {
051    this.value = value;
052  }
053
054}