org.dbtools.schema.schemafile.SchemaUniqueField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dbtools-gen Show documentation
Show all versions of dbtools-gen Show documentation
DBTools ORM Class Generator.
package org.dbtools.schema.schemafile;
import org.simpleframework.xml.Attribute;
import org.simpleframework.xml.Root;
/**
* User: jcampbell
* Date: 1/25/14
*/
@Root
public class SchemaUniqueField {
@Attribute
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}