Dennis Kao
2013-08-01 617bff91fba317f36740ecdecc7ae6b699afbd80
xdgnjobs/ximple-spatialjob/src/main/java/com/ximple/eofms/geoserver/config/XGeosDataConfig.java
@@ -1,87 +1,72 @@
package com.ximple.eofms.geoserver.config;
public class XGeosDataConfig
{
    private String  PG;
    private short   FSC;
    private short   COMP;
    private short   LEV;
    private short   WEIGHT;
    private String  FTYPE;
public class XGeosDataConfig {
    private String PG;
    private short FSC;
    private short COMP;
    private short LEV;
    private short WEIGHT;
    private String FTYPE;
    public XGeosDataConfig()
    {
    public XGeosDataConfig() {
    }
    public String getPG()
    {
    public String getPG() {
        return PG;
    }
    public void setPG(String PG)
    {
    public void setPG(String PG) {
        this.PG = PG;
    }
    public short getFSC()
    {
    public short getFSC() {
        return FSC;
    }
    public void setFSC(short FSC)
    {
    public void setFSC(short FSC) {
        this.FSC = FSC;
    }
    public short getCOMP()
    {
    public short getCOMP() {
        return COMP;
    }
    public void setCOMP(short COMP)
    {
    public void setCOMP(short COMP) {
        this.COMP = COMP;
    }
    public short getLEV()
    {
    public short getLEV() {
        return LEV;
    }
    public void setLEV(short LEV)
    {
    public void setLEV(short LEV) {
        this.LEV = LEV;
    }
    public short getWEIGHT()
    {
    public short getWEIGHT() {
        return WEIGHT;
    }
    public void setWEIGHT(short WEIGHT)
    {
    public void setWEIGHT(short WEIGHT) {
        this.WEIGHT = WEIGHT;
    }
    public String getFTYPE()
    {
    public String getFTYPE() {
        return FTYPE;
    }
    public void setFTYPE(String FTYPE)
    {
    public void setFTYPE(String FTYPE) {
        this.FTYPE = FTYPE;
    }
    public String toString()
    {
    public String toString() {
        return "XGeosDataConfig{" +
                "PG='" +  (PG != null ? PG : "null") + '\'' +
                "PG='" + (PG != null ? PG : "null") + '\'' +
                ", FSC=" + FSC +
                ", COMP=" + COMP +
                ", LEV=" + LEV +
                ", WEIGHT=" + WEIGHT +
                ", FTYPE='" + (FTYPE != null ? FTYPE : "null" ) + '\'' +
                ", FTYPE='" + (FTYPE != null ? FTYPE : "null") + '\'' +
                '}';
    }
}