001package io.ebeaninternal.dbmigration.migration; 002 003import javax.xml.bind.annotation.XmlAccessType; 004import javax.xml.bind.annotation.XmlAccessorType; 005import javax.xml.bind.annotation.XmlElement; 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 * <sequence> 020 * <element ref="{http://ebean-orm.github.io/xml/ns/dbmigration}defaultTablespace"/> 021 * </sequence> 022 * </restriction> 023 * </complexContent> 024 * </complexType> 025 * </pre> 026 */ 027@XmlAccessorType(XmlAccessType.FIELD) 028@XmlType(name = "", propOrder = { 029 "defaultTablespace" 030}) 031@XmlRootElement(name = "configuration") 032public class Configuration { 033 034 @XmlElement(required = true) 035 protected DefaultTablespace defaultTablespace; 036 037 /** 038 * Gets the value of the defaultTablespace property. 039 * 040 * @return possible object is 041 * {@link DefaultTablespace } 042 */ 043 public DefaultTablespace getDefaultTablespace() { 044 return defaultTablespace; 045 } 046 047 /** 048 * Sets the value of the defaultTablespace property. 049 * 050 * @param value allowed object is 051 * {@link DefaultTablespace } 052 */ 053 public void setDefaultTablespace(DefaultTablespace value) { 054 this.defaultTablespace = value; 055 } 056 057}