1 43 package net.jforum.security; 44 45 import java.util.List ; 46 47 55 public class PermissionItem 56 { 57 60 private String name; 61 62 65 private String id; 66 67 70 private String type; 71 72 75 private List data; 76 77 public static final int SINGLE = 1; 78 public static final int MULTIPLE = 2; 79 80 88 public PermissionItem(String name, String id, String type, List data) 89 { 90 this.name = name; 91 this.id = id; 92 this.type = type; 93 this.data = data; 94 } 95 96 101 public String getName() 102 { 103 return this.name; 104 } 105 106 111 public String getId() 112 { 113 return this.id; 114 } 115 116 123 public String getType() 124 { 125 return this.type; 126 } 127 128 134 public List getData() 135 { 136 return this.data; 137 } 138 } | Popular Tags |