1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.apache.jetspeed.om.profile.psml;
18
19 import org.apache.jetspeed.om.profile.Skin;
20
21 /***
22 * Default bean like implementation of the skin entry in psml
23 *
24 * @author <a href="mailto:raphael@apache.org">Raphaël Luta</a>
25 * @version $Id: PsmlSkin.java,v 1.4 2004/02/23 03:02:54 jford Exp $
26 */
27 public class PsmlSkin extends PsmlConfigElement implements Skin
28 {
29 private String state = null;
30
31 public String getState()
32 {
33 return this.state;
34 }
35
36 public void setState( String state )
37 {
38 this.state = state;
39 }
40
41 }