| | |
| | | package com.zy.asrs.common.properties; |
| | | |
| | | public enum SysOsType { |
| | | |
| | | Any("any", null), |
| | | Linux("Linux", null), |
| | | Mac_OS("Mac OS", null), |
| | | Mac_OS_X("Mac OS X", null), |
| | | Windows("Windows", "D:\\licensed.txt"), |
| | | OS2("OS/2", null), |
| | | Solaris("Solaris", null), |
| | | SunOS("SunOS", null), |
| | | MPEiX("MPE/iX", null), |
| | | HP_UX("HP-UX", null), |
| | | AIX("AIX", null), |
| | | OS390("OS/390", null), |
| | | FreeBSD("FreeBSD", null), |
| | | Irix("Irix", null), |
| | | Digital_Unix("Digital Unix", null), |
| | | NetWare_411("NetWare", null), |
| | | OSF1("OSF1", null), |
| | | OpenVMS("OpenVMS", null), |
| | | Others("Others", null); |
| | | |
| | | private String description; |
| | | private String activationCodePath; |
| | | |
| | | SysOsType(String desc, String activationCodePath) { |
| | | this.description = desc; |
| | | this.activationCodePath = activationCodePath; |
| | | } |
| | | |
| | | public String getDescription() { |
| | | return description; |
| | | } |
| | | |
| | | public void setDescription(String description) { |
| | | this.description = description; |
| | | } |
| | | |
| | | public String getActivationCodePath() { |
| | | return activationCodePath; |
| | | } |
| | | |
| | | public void setActivationCodePath(String activationCodePath) { |
| | | this.activationCodePath = activationCodePath; |
| | | } |
| | | |
| | | } |
| | | package com.zy.asrs.common.properties;
|
| | |
|
| | | public enum SysOsType {
|
| | |
|
| | | Any("any", null),
|
| | | Linux("Linux", null),
|
| | | Mac_OS("Mac OS", null),
|
| | | Mac_OS_X("Mac OS X", null),
|
| | | Windows("Windows", "D:\\licensed.txt"),
|
| | | OS2("OS/2", null),
|
| | | Solaris("Solaris", null),
|
| | | SunOS("SunOS", null),
|
| | | MPEiX("MPE/iX", null),
|
| | | HP_UX("HP-UX", null),
|
| | | AIX("AIX", null),
|
| | | OS390("OS/390", null),
|
| | | FreeBSD("FreeBSD", null),
|
| | | Irix("Irix", null),
|
| | | Digital_Unix("Digital Unix", null),
|
| | | NetWare_411("NetWare", null),
|
| | | OSF1("OSF1", null),
|
| | | OpenVMS("OpenVMS", null),
|
| | | Others("Others", null);
|
| | |
|
| | | private String description;
|
| | | private String activationCodePath;
|
| | |
|
| | | SysOsType(String desc, String activationCodePath) {
|
| | | this.description = desc;
|
| | | this.activationCodePath = activationCodePath;
|
| | | }
|
| | |
|
| | | public String getDescription() {
|
| | | return description;
|
| | | }
|
| | |
|
| | | public void setDescription(String description) {
|
| | | this.description = description;
|
| | | }
|
| | |
|
| | | public String getActivationCodePath() {
|
| | | return activationCodePath;
|
| | | }
|
| | |
|
| | | public void setActivationCodePath(String activationCodePath) {
|
| | | this.activationCodePath = activationCodePath;
|
| | | }
|
| | |
|
| | | }
|