KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > portletcontainer > pci > ActionInput


1 /**
2  * Copyright 2001-2003 The eXo Platform SARL All rights reserved.
3  * Please look at license.txt in info directory for more license detail.
4  **/

5
6 /**
7  * Created by The eXo Platform SARL
8  * Author : Mestrallet Benjamin
9  * benjmestrallet@users.sourceforge.net
10  * Date: Jul 30, 2003
11  * Time: 9:13:06 PM
12  */

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