V3_1.java [src/java/d/crlmod/crop] Revision:   Date:
/*
 *
 * This file is part of the Cloud Services Integration Platform (CSIP),
 * a Model-as-a-Service framework, API, and application suite.
 *
 * 2012-2024, OMSLab, Colorado State University.
 *
 * OMSLab licenses this file to you under the MIT license.
 * See the LICENSE file in the project root for more information.
 */
package d.crlmod.crop;

import crlmod.ServiceResources;
import static crlmod.ServiceResources.*;
import csip.annotations.*;
import static csip.annotations.State.RELEASED;
import javax.ws.rs.Path;

/**
 * @author od, ly
 */
@Name("crops")
@Description("Crop service for the CRLMOD_2018_June Database. Results from this service are returned in the rotation v2 format.")
@VersionInfo("3.1")
@Path("d/crop/3.1")
@State(RELEASED)
@Resource(from = ServiceResources.class)
public class V3_1 extends V2_1 {

  @Override
  protected String getJDBCId() {
    return CR_LMOD_2018_JUNE_ID;
  }
}