Skip to content
Snippets Groups Projects
Commit de507fd1 authored by tudtianus's avatar tudtianus
Browse files

fix: java some cleanup

parent bc97b48d
No related branches found
No related tags found
No related merge requests found
...@@ -10,18 +10,17 @@ import static unipotsdam.gf.core.management.utils.MarkdownUtils.convertMarkdownT ...@@ -10,18 +10,17 @@ import static unipotsdam.gf.core.management.utils.MarkdownUtils.convertMarkdownT
*/ */
public class Journal { public class Journal {
long id; private long id;
StudentIdentifier studentIdentifier; private StudentIdentifier studentIdentifier;
String creator; private String creator;
String entryHTML; private String entryHTML;
String entryMD; private String entryMD;
long timestamp; private long timestamp;
Visibility visibility; private Visibility visibility;
String category; //TODO enum private String category;//TODO enum
public Journal() {} public Journal() {}
public Journal(long id, StudentIdentifier studentIdentifier, String entry, long timestamp, Visibility visibility, String category) { public Journal(long id, StudentIdentifier studentIdentifier, String entry, long timestamp, Visibility visibility, String category) {
this.id = id; this.id = id;
this.studentIdentifier = studentIdentifier; this.studentIdentifier = studentIdentifier;
......
...@@ -13,15 +13,15 @@ import static unipotsdam.gf.core.management.utils.MarkdownUtils.convertMarkdownT ...@@ -13,15 +13,15 @@ import static unipotsdam.gf.core.management.utils.MarkdownUtils.convertMarkdownT
public class ProjectDescription { public class ProjectDescription {
long id; private long id;
String name; private String name;
String descriptionHTML; private String descriptionHTML;
String descriptionMD; private String descriptionMD;
boolean open; private boolean open;
Project project; private Project project;
Map<String,String> links; private Map<String,String> links;
ArrayList<String> group; private ArrayList<String> group;
long timestamp; private long timestamp;
public ProjectDescription() { public ProjectDescription() {
} }
......
...@@ -16,14 +16,14 @@ import java.util.Calendar; ...@@ -16,14 +16,14 @@ import java.util.Calendar;
public class DummyJournalService implements JournalService { public class DummyJournalService implements JournalService {
Logger log = LoggerFactory.getLogger(DummyJournalService.class); private Logger log = LoggerFactory.getLogger(DummyJournalService.class);
Calendar cal = Calendar.getInstance(); private Calendar cal = Calendar.getInstance();
long id = 4; private long id = 4;
ArrayList<Journal> journals = new ArrayList<>(); private ArrayList<Journal> journals = new ArrayList<>();
public DummyJournalService(){ public DummyJournalService(){
...@@ -80,7 +80,7 @@ public class DummyJournalService implements JournalService { ...@@ -80,7 +80,7 @@ public class DummyJournalService implements JournalService {
@Override @Override
public boolean saveJournal(long id, String student, String project, String text, String visibility, String category) { public boolean saveJournal(long id, String student, String project, String text, String visibility, String category) {
if (Long.valueOf(id) == -1){ if (id == -1){
StudentIdentifier studentId = new StudentIdentifier(student,project); StudentIdentifier studentId = new StudentIdentifier(student,project);
journals.add(new Journal(this.id++, studentId, text , cal.getTimeInMillis(), stringToVisibility(visibility) , category)); journals.add(new Journal(this.id++, studentId, text , cal.getTimeInMillis(), stringToVisibility(visibility) , category));
...@@ -126,7 +126,7 @@ public class DummyJournalService implements JournalService { ...@@ -126,7 +126,7 @@ public class DummyJournalService implements JournalService {
return v; return v;
} }
ArrayList<Journal> resetList () { private void resetList() {
StudentIdentifier studentIdentifier = new StudentIdentifier("0","0"); StudentIdentifier studentIdentifier = new StudentIdentifier("0","0");
StudentIdentifier studentIdentifier2 = new StudentIdentifier("0","1"); StudentIdentifier studentIdentifier2 = new StudentIdentifier("0","1");
...@@ -152,7 +152,6 @@ public class DummyJournalService implements JournalService { ...@@ -152,7 +152,6 @@ public class DummyJournalService implements JournalService {
journals.add(j4); journals.add(j4);
journals.add(j5); journals.add(j5);
return journals;
} }
......
...@@ -6,22 +6,18 @@ import unipotsdam.gf.modules.journal.model.ProjectDescription; ...@@ -6,22 +6,18 @@ import unipotsdam.gf.modules.journal.model.ProjectDescription;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Date; import java.util.Date;
import java.util.HashMap; import java.util.HashMap;
import java.util.Map;
public class DummyProjectDescription implements ProjectDescriptionService { public class DummyProjectDescription implements ProjectDescriptionService {
ArrayList<Map<String,String>> links; private ProjectDescription testProject;
ArrayList<String> group;
ProjectDescription testProject;
public DummyProjectDescription(){ public DummyProjectDescription(){
links = new ArrayList();
HashMap<String,String> link = new HashMap<>(); HashMap<String,String> link = new HashMap<>();
link.put("Test", "www.test.de"); link.put("Test", "www.test.de");
link.put("Google", "www.google.de"); link.put("Google", "www.google.de");
group = new ArrayList<>(); ArrayList<String> group = new ArrayList<>();
group.add("Test Person"); group.add("Test Person");
group.add("Person Test"); group.add("Person Test");
......
...@@ -23,8 +23,8 @@ import java.util.ArrayList; ...@@ -23,8 +23,8 @@ import java.util.ArrayList;
@Path("/journal") @Path("/journal")
public class JournalView { public class JournalView {
Logger log = LoggerFactory.getLogger(JournalView.class); private Logger log = LoggerFactory.getLogger(JournalView.class);
JournalService journalService = new DummyJournalService(); private JournalService journalService = new DummyJournalService();
/** /**
* Returns a specific Journal * Returns a specific Journal
...@@ -111,7 +111,7 @@ public class JournalView { ...@@ -111,7 +111,7 @@ public class JournalView {
journalService.saveJournal(id, student, project, text, visibility, category); journalService.saveJournal(id, student, project, text, visibility, category);
//TODO token //TODO token
URI location = null; URI location;
try { try {
location = new URI("../pages/eportfolio.jsp?token=test"); location = new URI("../pages/eportfolio.jsp?token=test");
log.debug("<<< saveJournal: redirect to " +location.toString()); log.debug("<<< saveJournal: redirect to " +location.toString());
......
...@@ -21,8 +21,8 @@ import java.net.URISyntaxException; ...@@ -21,8 +21,8 @@ import java.net.URISyntaxException;
@Path("/projectdescription") @Path("/projectdescription")
public class ProjectDescriptionView { public class ProjectDescriptionView {
Logger log = LoggerFactory.getLogger(ProjectDescriptionView.class); private Logger log = LoggerFactory.getLogger(ProjectDescriptionView.class);
ProjectDescriptionService descriptionService = new DummyProjectDescription(); private ProjectDescriptionService descriptionService = new DummyProjectDescription();
//get Description //get Description
@GET @GET
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment