V1_0.java [src/java/m/weather/PRISM] Revision:   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 m.weather.PRISM;

import csip.annotations.Resource;
import static csip.annotations.ResourceType.FILE;
import csip.annotations.Resources;
import m.weather.WeatherModelDataService;
import javax.ws.rs.Path;
import oms3.annotations.*;

/**
 * PRISM extraction
 *
 * @author od
 */
@Name("PRISM")
@Description("PRISM (http://www.prism.oregonstate.edu/)")
@Path("m/prism/1.0")
// This should be inherited, but it doesn't work when placed in WeatherModelDataService
@Resources({
    @Resource(file="/python/driver.py", type=FILE, id="driver"),
    @Resource(file="/python/weatherExtraction.py", type=FILE, id="weatherExtraction"),
})
public class V1_0 extends WeatherModelDataService {
}