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 * <complexType> 017 * <complexContent> 018 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 019 * <attribute name="tables" type="{http://www.w3.org/2001/XMLSchema}string" /> 020 * <attribute name="indexes" type="{http://www.w3.org/2001/XMLSchema}string" /> 021 * <attribute name="history" type="{http://www.w3.org/2001/XMLSchema}string" /> 022 * </restriction> 023 * </complexContent> 024 * </complexType> 025 * </pre> 026 */ 027@XmlAccessorType(XmlAccessType.FIELD) 028@XmlType(name = "") 029@XmlRootElement(name = "defaultTablespace") 030public class DefaultTablespace { 031 032 @XmlAttribute(name = "tables") 033 protected String tables; 034 @XmlAttribute(name = "indexes") 035 protected String indexes; 036 @XmlAttribute(name = "history") 037 protected String history; 038 039 /** 040 * Gets the value of the tables property. 041 * 042 * @return possible object is 043 * {@link String } 044 */ 045 public String getTables() { 046 return tables; 047 } 048 049 /** 050 * Sets the value of the tables property. 051 * 052 * @param value allowed object is 053 * {@link String } 054 */ 055 public void setTables(String value) { 056 this.tables = value; 057 } 058 059 /** 060 * Gets the value of the indexes property. 061 * 062 * @return possible object is 063 * {@link String } 064 */ 065 public String getIndexes() { 066 return indexes; 067 } 068 069 /** 070 * Sets the value of the indexes property. 071 * 072 * @param value allowed object is 073 * {@link String } 074 */ 075 public void setIndexes(String value) { 076 this.indexes = value; 077 } 078 079 /** 080 * Gets the value of the history property. 081 * 082 * @return possible object is 083 * {@link String } 084 */ 085 public String getHistory() { 086 return history; 087 } 088 089 /** 090 * Sets the value of the history property. 091 * 092 * @param value allowed object is 093 * {@link String } 094 */ 095 public void setHistory(String value) { 096 this.history = value; 097 } 098 099}