1 /*
2 * $Id: IUnlockedClientAttributesCapability.java,v 1.3 2007/03/23 16:26:32 oeuillot Exp $
3 *
4 */
5 package org.rcfaces.core.component.capability;
6
7 /**
8 * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
9 * @version $Revision: 1.3 $ $Date: 2007/03/23 16:26:32 $
10 */
11 public interface IUnlockedClientAttributesCapability {
12
13 /**
14 * Returns a string value holding a comma separated list of the client
15 * modifiable properties.
16 *
17 * @return list of modifiable attributes
18 */
19 String getUnlockedClientAttributeNames();
20
21 /**
22 * Sets a string value holding a comma separated list of the client
23 * modifiable properties.
24 *
25 * @param lock
26 * list of modifiable attributes
27 */
28 void setUnlockedClientAttributeNames(String lock);
29 }