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
RevLine 
[832]1package de.dass_it.vanhelsing.gui.items;
[844]2public class ConsoleItem extends ItemType implements UserObjectItem{
[832]3 private String name;
4 private String password;
[858]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;
[832]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
[858]38 public String getJobacl() {
39 return jobacl;
[832]40 }
41
[858]42 public void setJobacl(String jobacl) {
43 this.jobacl = jobacl;
[832]44 }
45
[858]46 public String getClientacl() {
47 return clientacl;
[832]48 }
49
[858]50 public void setClientacl(String clientacl) {
51 this.clientacl = clientacl;
[832]52 }
53
[858]54 public String getStorageacl() {
55 return storageacl;
[832]56 }
57
[858]58 public void setStorageacl(String storageacl) {
59 this.storageacl = storageacl;
[832]60 }
61
[858]62 public String getScheduleacl() {
63 return scheduleacl;
[832]64 }
65
[858]66 public void setScheduleacl(String scheduleacl) {
67 this.scheduleacl = scheduleacl;
[832]68 }
69
[858]70 public String getPoolacl() {
71 return poolacl;
[832]72 }
73
[858]74 public void setPoolacl(String poolacl) {
75 this.poolacl = poolacl;
[832]76 }
77
[858]78 public String getFileSetacl() {
79 return fileSetacl;
[832]80 }
81
[858]82 public void setFileSetacl(String fileSetacl) {
83 this.fileSetacl = fileSetacl;
[832]84 }
85
[858]86 public String getCatalogacl() {
87 return catalogacl;
[832]88 }
89
[858]90 public void setCatalogacl(String catalogacl) {
91 this.catalogacl = catalogacl;
[832]92 }
93
[858]94 public String getCommandacl() {
95 return commandacl;
[832]96 }
97
[858]98 public void setCommandacl(String commandacl) {
99 this.commandacl = commandacl;
[832]100 }
101
[858]102 public String getWhereacl() {
103 return whereacl;
[832]104 }
105
[858]106 public void setWhereacl(String whereacl) {
107 this.whereacl = whereacl;
[832]108 }
[858]109
[832]110}
Note: See TracBrowser for help on using the repository browser.