forked from D-Net/dnet-hadoop
GetCSV refactoring - changed to mirror the original model class
This commit is contained in:
parent
ed183d878e
commit
a5f6edfa6c
|
@ -13,23 +13,12 @@ public class CSVProject implements Serializable {
|
||||||
@CsvBindByName(column = "id")
|
@CsvBindByName(column = "id")
|
||||||
private String id;
|
private String id;
|
||||||
|
|
||||||
@CsvBindByName(column = "status")
|
|
||||||
private String status;
|
|
||||||
|
|
||||||
@CsvBindByName(column = "programme")
|
@CsvBindByName(column = "programme")
|
||||||
private String programme;
|
private String programme;
|
||||||
|
|
||||||
@CsvBindByName(column = "topics")
|
@CsvBindByName(column = "topics")
|
||||||
private String topics;
|
private String topics;
|
||||||
|
|
||||||
@CsvBindByName(column = "title")
|
|
||||||
private String title;
|
|
||||||
|
|
||||||
@CsvBindByName(column = "call")
|
|
||||||
private String call;
|
|
||||||
|
|
||||||
@CsvBindByName(column = "subjects")
|
|
||||||
private String subjects;
|
|
||||||
|
|
||||||
public String getId() {
|
public String getId() {
|
||||||
return id;
|
return id;
|
||||||
|
@ -39,13 +28,7 @@ public class CSVProject implements Serializable {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(String status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getProgramme() {
|
public String getProgramme() {
|
||||||
return programme;
|
return programme;
|
||||||
|
@ -63,28 +46,6 @@ public class CSVProject implements Serializable {
|
||||||
this.topics = topics;
|
this.topics = topics;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getTitle() {
|
|
||||||
return title;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTitle(String title) {
|
|
||||||
this.title = title;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getCall() {
|
|
||||||
return call;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCall(String call) {
|
|
||||||
this.call = call;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSubjects() {
|
|
||||||
return subjects;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSubjects(String subjects) {
|
|
||||||
this.subjects = subjects;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue