source: vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/FDDirectorItem.java@ 832

Last change on this file since 832 was 832, checked in by tobias, on Mar 5, 2010 at 6:03:21 PM

views and data objects of the resource types added.
basic logging with log4j for the beanUtil class.
Configuration and JobSchedule class renamed.

File size: 648 bytes
Line 
1package de.dass_it.vanhelsing.gui.items;
2public class FDDirectorItem extends ItemType{
3 private String name;
4 private String password;
5 private String monitor;
6
7 public FDDirectorItem(){}
8
9 public FDDirectorItem(String name, String password){
10 setName(name);
11 setPassword(password);
12 }
13
14 public String getName() {
15 return name;
16 }
17 public void setName(String name) {
18 this.name = name;
19 }
20 public String getPassword() {
21 return password;
22 }
23 public void setPassword(String password) {
24 this.password = password;
25 }
26 public String getMonitor() {
27 return monitor;
28 }
29 public void setMonitor(String monitor) {
30 this.monitor = monitor;
31 }
32
33}
Note: See TracBrowser for help on using the repository browser.