Minor Update

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@95805 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-05-16 15:34:17 +00:00
parent 342f1b3178
commit 5673851e97
1 changed files with 11 additions and 1 deletions

View File

@ -75,13 +75,23 @@ public class JobS implements Serializable {
this.validations = validations;
}
public InvocationS getInvocation() {
return invocation;
}
public void setInvocation(InvocationS invocation) {
this.invocation = invocation;
}
@Override
public String toString() {
return "JobS [id=" + id + ", progress=" + progress
+ ", humaReadableStatus=" + humaReadableStatus
+ ", description=" + description + ", validations="
+ validations + "]";
+ validations + ", invocation=" + invocation + "]";
}
}