1 54 55 package org.apache.jetspeed.om.cms.slide; 56 57 import org.apache.jetspeed.om.*; 58 import org.apache.jetspeed.om.cms.Permission; 59 66 public class SlidePermission implements Permission 67 { 68 69 private String actor; 70 private String action; 71 private boolean inheritable; 72 private boolean negative; 73 74 public String getActor() 75 { 76 return actor; 77 } 78 79 public void setActor(String actor) 80 { 81 this.actor = actor; 82 } 83 84 public void setAction(String action) 85 { 86 this.action = action; 87 } 88 89 public String getAction() 90 { 91 return action; 92 } 93 94 public void setInheritable(boolean inheritable) 95 { 96 this.inheritable = inheritable; 97 } 98 99 public boolean isInheritable() 100 { 101 return inheritable; 102 } 103 104 public void setNegative(boolean negative) 105 { 106 this.negative = negative; 107 } 108 109 public boolean isNegative() 110 { 111 return negative; 112 } 113 } 114 | Popular Tags |