01 package jspkurs.aufg.kap2;
02
03 import java.io.Serializable;
04
05 /**
06 *
07 * @author Hans Joachim Herbertz
08 * @created 18.01.2003
09 */
10 public class UserLookAndFeel implements Serializable {
11
12 private String username=null;
13 private String color=null;
14 private String background=null;
15
16 public UserLookAndFeel() {}
17
18
19 /**
20 * Returns the background.
21 * @return String
22 */
23 public String getBackground() {
24 return background;
25 }
26
27 /**
28 * Returns the color.
29 * @return String
30 */
31 public String getColor() {
32 return color;
33 }
34
35 /**
36 * Returns the username.
37 * @return String
38 */
39 public String getUsername() {
40 return username;
41 }
42
43 /**
44 * Sets the background.
45 * @param background The background to set
46 */
47 public void setBackground(String background) {
48 this.background = background;
49 }
50
51 /**
52 * Sets the color.
53 * @param color The color to set
54 */
55 public void setColor(String color) {
56 this.color = color;
57 }
58 /**
59 * Sets the username.
60 * @param username The username to set
61 */
62 public void setUsername(String username) {
63 this.username = username;
64 }
65
66 }
|