Make entities immutable and create proper update methods that state by signature what can be updated. (#342)

Signed-off-by: kaizimmerm <kai.zimmermann@bosch-si.com>
This commit is contained in:
Kai Zimmermann
2016-11-17 20:07:23 +01:00
committed by GitHub
parent b6834e9ee2
commit ca63106d5c
314 changed files with 7699 additions and 6914 deletions

View File

@@ -62,7 +62,7 @@ public class ActionUpdateStatus {
return Collections.emptyList();
}
return Collections.unmodifiableList(message);
return message;
}
public boolean addMessage(final String message) {