1 5 6 13 package org.exoplatform.services.portletcontainer.pci; 14 15 public class ActionInput extends Input { 16 private boolean stateChangeAuthorized; 17 18 public boolean isStateChangeAuthorized() { 19 return stateChangeAuthorized; 20 } 21 22 public void setStateChangeAuthorized(boolean stateChangeAuthorized) { 23 this.stateChangeAuthorized = stateChangeAuthorized; 24 } 25 26 } 27 | Popular Tags |