V2_0.java [src/java/d/soils/fpp01_fppsoilparams] Revision: default  Date:
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package d.soils.fpp01_fppsoilparams;

import csip.annotations.Resource;
import static d.soils.wwe01_wwesoilparams.SoilParamsAoAFactory.FPP_SOIL_PARAMS_2_0;
import d.soils.wwe01_wwesoilparams.SoilParamsService;
import javax.ws.rs.Path;
import csip.annotations.Description;
import csip.annotations.Name;
import csip.annotations.VersionInfo;
import soils.db.DBResources;

/**
 * REST Web Service. Front end callable.
 *
 * @author wlloyd, od, Shaun Case
 * @author <a href="mailto:shaun.case@colostate.edu">Shaun Case</a>
 */
@Name("WWE-05:  Erosion Soil Parameters (wwesoilparams)")
@Description("Intersects area of analysis (AoA) geometry with NRCS Soil Data Mart (SDM) mapunit geometry, derives a list of distinct soil components, horizons, and texture data for the AoA, and gets parameters from SDM tables for populating application UI data fields and computing erosion rates and other resource analysis output.  This version includes the component long_name")
@VersionInfo("2.0")
@Path("d/fppsoilparams/2.0")
@Resource(from = DBResources.class)
public class V2_0 extends SoilParamsService {
    public V2_0(){
        super(FPP_SOIL_PARAMS_2_0);
    }
}