This repository has been archived on 2024-05-07. You can view files and clone it, but cannot push or open issues or pull requests.
species-discovery/src/main/java/org/gcube/portlets/user/speciesdiscovery/shared/JobGisLayerModel.java

62 lines
1.0 KiB
Java

/**
*
*/
package org.gcube.portlets.user.speciesdiscovery.shared;
/**
* The Class JobGisLayerModel.
*
* @author Francesco Mangiacrapa francesco.mangiacrapa@isti.cnr.it
* Feb 9, 2017
*/
public class JobGisLayerModel extends DefaultJob{
/**
*
*/
private static final long serialVersionUID = 8754068044391917378L;
/**
* Instantiates a new gis layer job.
*/
public JobGisLayerModel() {
}
/**
* Instantiates a new gis layer job.
*
* @param id the id
* @param name the name
* @param startTime the start time
* @param submitTime the submit time
* @param endTime the end time
* @param description the description
* @param state the state
*/
public JobGisLayerModel(
String id, String name, long startTime, long submitTime, long endTime,
String description, String state) {
super(id, name, startTime, submitTime, endTime, description, state);
}
/* (non-Javadoc)
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
return super.toString();
}
}