1 package org.jahia.services.categories; 2 3 import java.io.Serializable ; 4 5 15 16 class CategoryBean implements Serializable { 17 private int id = 0; 18 private String key = null; 19 private int aclID = 0; 20 21 25 public CategoryBean () { 26 } 27 28 35 public CategoryBean (int id, String key, int aclID) { 36 this.id = id; 37 this.key = key; 38 this.aclID = aclID; 39 } 40 41 44 public int getId () { 45 return id; 46 } 47 48 protected void setId (int id) { 49 this.id = id; 50 } 51 52 55 public String getKey () { 56 return key; 57 } 58 59 64 public void setKey (String key) { 65 this.key = key; 66 } 67 68 71 public int getAclID () { 72 return aclID; 73 } 74 75 81 public void setAclID (int aclID) { 82 this.aclID = aclID; 83 } 84 85 } 86 | Popular Tags |