V1_0.java [src/java/m/groundwater/service1] Revision: 979d16c7c575aa4b0bb8143d65076aff43a2bcd6  Date: Mon Oct 27 09:16:28 MDT 2014
/*
 * 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.groundwater.service1;

import csip.annotations.*;
import oms3.annotations.*;
import javax.ws.rs.Path;

/**
 * GW Service. 
 *
 * @author od
 */
@Name("Model ...")
@Description("model description")
@Path("m/model/1.0")
@Polling(first = 10000, next = 2000)
public class V1_0 extends csip.AbstractModelService {

    @Override
    protected String process() throws Exception {
        return EXEC_OK; //To change body of generated methods, choose Tools | Templates.
    }
        
}