[New] Added StrolchRootElement Service Argument and Result classes

This commit is contained in:
Robert von Burg 2016-09-21 09:48:36 +02:00
parent 7269a5f3b1
commit 6286949506
1 changed files with 4 additions and 0 deletions

View File

@ -10,6 +10,10 @@ public class StrolchRootElementResult extends ServiceResult {
private StrolchRootElement rootElement;
public StrolchRootElementResult() {
//
}
public StrolchRootElementResult(StrolchRootElement rootElement) {
super(ServiceResultState.SUCCESS);
this.rootElement = rootElement;