001package io.ebeaninternal.dbmigration.migration;
002
003import javax.xml.bind.annotation.XmlAccessType;
004import javax.xml.bind.annotation.XmlAccessorType;
005import javax.xml.bind.annotation.XmlAttribute;
006import javax.xml.bind.annotation.XmlRootElement;
007import javax.xml.bind.annotation.XmlType;
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;complexContent>
018 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
019 *       &lt;attribute name="baseTable" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
020 *     &lt;/restriction>
021 *   &lt;/complexContent>
022 * &lt;/complexType>
023 * </pre>
024 */
025@XmlAccessorType(XmlAccessType.FIELD)
026@XmlType(name = "")
027@XmlRootElement(name = "addHistoryTable")
028public class AddHistoryTable {
029
030  @XmlAttribute(name = "baseTable", required = true)
031  protected String baseTable;
032
033  /**
034   * Gets the value of the baseTable property.
035   *
036   * @return possible object is
037   * {@link String }
038   */
039  public String getBaseTable() {
040    return baseTable;
041  }
042
043  /**
044   * Sets the value of the baseTable property.
045   *
046   * @param value allowed object is
047   *              {@link String }
048   */
049  public void setBaseTable(String value) {
050    this.baseTable = value;
051  }
052
053}