forked from geodmms/xdgnjobs

ulysseskao
2013-12-05 0d2e980ea5ffa02e0f697f8a17f26f8bd3bf85ac
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;
}