| 1 | package de.dass_it.vanhelsing.gui.items;
|
|---|
| 2 | public 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 | }
|
|---|