com.venky.swf.plugins.collab.db.model.config.Country Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swf-plugin-collab Show documentation
Show all versions of swf-plugin-collab Show documentation
Succinct Web Framework - Plugin collaboration
package com.venky.swf.plugins.collab.db.model.config;
import java.util.List;
import com.venky.swf.db.annotations.column.UNIQUE_KEY;
import com.venky.swf.db.annotations.column.indexing.Index;
import com.venky.swf.db.annotations.model.CONFIGURATION;
import com.venky.swf.db.model.Model;
@CONFIGURATION
public interface Country extends Model{
@UNIQUE_KEY
@Index
public String getName();
public void setName(String name);
@UNIQUE_KEY("ISO")
@Index
public String getIsoCode();
public void setIsoCode(String isoCode);
public List getStates();
}