blob: 21be1bf662648f00df39ba7bd59d687214c1a796 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package drat.proteus.workflow.rest;
import java.io.IOException;
import java.util.logging.Logger;
import org.apache.oodt.cas.metadata.Metadata;
import org.apache.oodt.cas.metadata.util.PathUtils;
import org.apache.oodt.cas.workflow.system.XmlRpcWorkflowManagerClient;
import org.apache.oodt.pcs.util.WorkflowManagerUtils;
import org.wicketstuff.rest.annotations.MethodMapping;
import org.wicketstuff.rest.annotations.parameters.RequestBody;
import org.wicketstuff.rest.contenthandling.json.webserialdeserial.GsonWebSerialDeserial;
import org.wicketstuff.rest.resource.AbstractRestResource;
import org.wicketstuff.rest.utils.http.HttpMethod;
import backend.FileConstants;
/**
* This is where all the rest apis related to workflow in drat are declared
* */
public class WorkflowRestResource extends AbstractRestResource<GsonWebSerialDeserial> {
private static final long serialVersionUID = -5885885059043262485L;
XmlRpcWorkflowManagerClient wm;
private static final Logger LOG = Logger.getLogger(WorkflowRestResource.class.getName());
public WorkflowRestResource() {
super(new GsonWebSerialDeserial());
wm = new WorkflowManagerUtils(PathUtils.replaceEnvVariables(FileConstants.CLIENT_URL)).getClient();
}
@MethodMapping(value = "/dynamic", httpMethod = HttpMethod.POST)
public String performDynamicWorkFlow(@RequestBody DynamicWorkflowRequestWrapper requestBody ) {
try {
Metadata metaData = new Metadata();
LOG.info(requestBody.taskIds.get(0));
wm.executeDynamicWorkflow(requestBody.taskIds,metaData);
return "OK";
}catch(IOException ex) {
LOG.info("Workflow Service Error " + ex.getMessage());
return "Connectiing to Server Eroor";
}catch(Exception ex) {
LOG.info("Workflow Service Error " + ex.getMessage());
return "Failed to connect to client Url";
}
}
}