Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.library / org.gvsig.installer / org.gvsig.installer.lib / org.gvsig.installer.lib.impl / src / main / java / org / gvsig / installer / lib / impl / info / InstallerInfoTags.java @ 40560

History | View | Annotate | Download (2.29 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 3
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
/*
25
 * AUTHORS (In addition to CIT):
26
 * 2010 {Prodevelop}   {Task}
27
 */
28

    
29
package org.gvsig.installer.lib.impl.info;
30

    
31
/**
32
 * @author <a href="mailto:jpiera@gvsig.org">Jorge Piera Llodr&aacute;</a>
33
 */
34
public class InstallerInfoTags {
35

    
36
        public static final String CODE = "code";
37
        public static final String CODEALIAS = "code-alias";
38
        public static final String NAME = "name";
39
        public static final String DESCRIPTION = "description";
40
        public static final String VERSION = "version";
41
        public static final String BUILD = "buildNumber";
42
        public static final String BUILD_OLD = "build";
43
        public static final String STATE = "state";
44
        public static final String OFFICIAL = "official";
45
        public static final String TYPE = "type";
46
        public static final String OS = "operating-system";
47
        public static final String ARCHITECTURE = "architecture";
48
        public static final String JVM = "java-version";
49
        public static final String GVSIG_VERSION = "gvSIG-version";
50
        public static final String DOWNLOAD_URL = "download-url";
51
        public static final String MODEL_VERSION = "model-version";
52
        public static final String OWNER = "owner";
53
        public static final String OWNER_URL = "owner-url";
54
        public static final String SOURCES_URL = "sources-url";
55
        public static final String WEB_URL = "web-url";
56
        public static final String DEPENDENCIES = "dependencies";
57
        public static final String CATEGORIES = "categories";
58
}