From 2a3ec0fbda66ed07adcdc968a9365096ecd54f40 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 25 Feb 2014 11:04:51 +0100 Subject: Kommunikation von BwLehrpool Suite zu BwLehrpool Suite Server läuft nun über Thrift --- Dozentenmodul/src/models/Lecture.java | 66 +++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 Dozentenmodul/src/models/Lecture.java (limited to 'Dozentenmodul/src/models/Lecture.java') diff --git a/Dozentenmodul/src/models/Lecture.java b/Dozentenmodul/src/models/Lecture.java new file mode 100644 index 00000000..383bded9 --- /dev/null +++ b/Dozentenmodul/src/models/Lecture.java @@ -0,0 +1,66 @@ +package models; + +import java.util.Date; + +public class Lecture { + + + private String name; + private String shortDesc; + private String desc; + private Date startdate; + private Date enddate; + private boolean active; + + public static Lecture lecture =new Lecture(); + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getShortDesc() { + return shortDesc; + } + + public void setShortDesc(String shortDesc) { + this.shortDesc = shortDesc; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public Date getStartdate() { + return startdate; + } + + public void setStartdate(Date startdate) { + this.startdate = startdate; + } + + public Date getEnddate() { + return enddate; + } + + public void setEnddate(Date enddate) { + this.enddate = enddate; + } + + public boolean isActive() { + return active; + } + + public void setActive(boolean active) { + this.active = active; + } + + +} -- cgit v1.2.3-55-g7522