Minor Update
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@95802 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
6321051e95
commit
342f1b3178
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,71 @@
|
|||
package org.gcube.portlets.user.td.gwtservice.shared.task;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author "Giancarlo Panichi"
|
||||
*
|
||||
*/
|
||||
public class InvocationS implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -7112348181058962879L;
|
||||
|
||||
protected String columnId;
|
||||
protected long operationId;
|
||||
protected Long identifier;
|
||||
protected Map<String, Object> parameters;
|
||||
|
||||
public InvocationS(){
|
||||
|
||||
}
|
||||
|
||||
public InvocationS(String columnId,long operationId,Long identifier,Map<String, Object> parameters){
|
||||
this.columnId=columnId;
|
||||
this.operationId=operationId;
|
||||
this.identifier=identifier;
|
||||
this.parameters=parameters;
|
||||
}
|
||||
|
||||
|
||||
public String getColumnId() {
|
||||
return columnId;
|
||||
}
|
||||
|
||||
public void setColumnId(String columnId) {
|
||||
this.columnId = columnId;
|
||||
}
|
||||
|
||||
public long getOperationId() {
|
||||
return operationId;
|
||||
}
|
||||
|
||||
public void setOperationId(long operationId) {
|
||||
this.operationId = operationId;
|
||||
}
|
||||
|
||||
public Long getIdentifier() {
|
||||
return identifier;
|
||||
}
|
||||
|
||||
public void setIdentifier(Long identifier) {
|
||||
this.identifier = identifier;
|
||||
}
|
||||
|
||||
public Map<String, Object> getParameters() {
|
||||
return parameters;
|
||||
}
|
||||
|
||||
public void setParameters(Map<String, Object> parameters) {
|
||||
this.parameters = parameters;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "InvocationS [columnId=" + columnId + ", operationId="
|
||||
+ operationId + ", identifier=" + identifier + ", parameters="
|
||||
+ parameters + "]";
|
||||
}
|
||||
|
||||
}
|
|
@ -19,18 +19,20 @@ public class JobS implements Serializable {
|
|||
protected String humaReadableStatus;
|
||||
protected String description;
|
||||
protected ArrayList<Validations> validations;
|
||||
|
||||
protected InvocationS invocation;
|
||||
|
||||
public JobS() {
|
||||
|
||||
}
|
||||
|
||||
public JobS(String id, float progress, String humaReadableStatus, String description,
|
||||
ArrayList<Validations> validations) {
|
||||
ArrayList<Validations> validations, InvocationS invocation) {
|
||||
this.id=id;
|
||||
this.progress=progress;
|
||||
this.humaReadableStatus=humaReadableStatus;
|
||||
this.description=description;
|
||||
this.validations=validations;
|
||||
this.invocation=invocation;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
|
|
Loading…
Reference in New Issue