forked from geodmms/xdgnjobs

Dennis Kao
2014-01-06 a924ec71875291809d7f2e13c87dc1a231e87526
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ximple.eofms.jobs;
 
public interface DataReposVersionManager {
    public static final String XGVERSIONTABLE_NAME = "xgeos_vsversion";
    public static final String[] DEFAULTXGVERSIONSCHEMA_NAMES = new String[]{
        "gisrepo1", "gisrepo2"
    };
 
    public static final String XPTVERSIONTABLE_NAME = "xpwthemes_vsversion";
    public static final String[] DEFAULTXPTVERSIONTABLE_NAMES = new String[]{
        "xpwtheme1", "xpwtheme2"
    };
 
    public static final short VSSTATUS_AVAILABLE = 0x0000;
    public static final short VSSTATUS_USING = 0x0100;
    public static final short VSSTATUS_CONFIG = 0x0020;
    public static final short VSSTATUS_LINKVIEW = 0x0010;
    public static final short VSSTATUS_READY = 0x0002;
    public static final short VSSTATUS_COVERT = 0x0001;
}