1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
  | package com.zy.common.model.enums; 
 |    
 |  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; 
 |      } 
 |    
 |  } 
 |  
  |