package usda.weru.gis.data;

/**
 *
 * @author Joseph Levin <joelevin@weru.ksu.edu>
 */
public class Territory {

    private final TerritoryType c_type;

    private String c_displayName;
    private String c_description;

    public Territory(TerritoryType type) {
        c_type = type;
    }

    public Territory(TerritoryType type, String displayName) {
        this(type);
        c_displayName = displayName;
    }

    public Territory(TerritoryType type, String displayName, String description) {
        this(type, displayName);
        c_description = description;
    }

    public String getDisplayName() {
        return c_displayName;
    }

    public TerritoryType getType() {
        return c_type;
    }

    public String getTypeDescription() {
        return c_description;
    }
}
