source: vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/ConsoleItem.java@ 865

Last change on this file since 865 was 865, checked in by tobias, on Apr 20, 2010 at 5:21:42 PM

comments added
all methods of the wsdl file implemented

File size: 1.9 KB
Line 
1package de.dass_it.vanhelsing.gui.items;
2public class ConsoleItem extends ItemType implements UserObjectItem{
3 private String name;
4 private String password;
5 private String jobacl;
6 private String clientacl;
7 private String storageacl;
8 private String scheduleacl;
9 private String poolacl;
10 private String fileSetacl;
11 private String catalogacl;
12 private String commandacl;
13 private String whereacl;
14
15 public ConsoleItem(){}
16
17 public ConsoleItem(String name, String password){
18 setName(name);
19 setPassword(password);
20 }
21
22 public String getName() {
23 return name;
24 }
25
26 public void setName(String name) {
27 this.name = name;
28 }
29
30 public String getPassword() {
31 return password;
32 }
33
34 public void setPassword(String password) {
35 this.password = password;
36 }
37
38 public String getJobacl() {
39 return jobacl;
40 }
41
42 public void setJobacl(String jobacl) {
43 this.jobacl = jobacl;
44 }
45
46 public String getClientacl() {
47 return clientacl;
48 }
49
50 public void setClientacl(String clientacl) {
51 this.clientacl = clientacl;
52 }
53
54 public String getStorageacl() {
55 return storageacl;
56 }
57
58 public void setStorageacl(String storageacl) {
59 this.storageacl = storageacl;
60 }
61
62 public String getScheduleacl() {
63 return scheduleacl;
64 }
65
66 public void setScheduleacl(String scheduleacl) {
67 this.scheduleacl = scheduleacl;
68 }
69
70 public String getPoolacl() {
71 return poolacl;
72 }
73
74 public void setPoolacl(String poolacl) {
75 this.poolacl = poolacl;
76 }
77
78 public String getFileSetacl() {
79 return fileSetacl;
80 }
81
82 public void setFileSetacl(String fileSetacl) {
83 this.fileSetacl = fileSetacl;
84 }
85
86 public String getCatalogacl() {
87 return catalogacl;
88 }
89
90 public void setCatalogacl(String catalogacl) {
91 this.catalogacl = catalogacl;
92 }
93
94 public String getCommandacl() {
95 return commandacl;
96 }
97
98 public void setCommandacl(String commandacl) {
99 this.commandacl = commandacl;
100 }
101
102 public String getWhereacl() {
103 return whereacl;
104 }
105
106 public void setWhereacl(String whereacl) {
107 this.whereacl = whereacl;
108 }
109
110}
Note: See TracBrowser for help on using the repository browser.