/** * */ 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(); } }