Examples of updateApplicationJob()


Examples of org.apache.airavata.registry.api.AiravataRegistry2.updateApplicationJob()

    @Consumes({MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML})
    @Produces(MediaType.TEXT_PLAIN)
    public Response updateApplicationJob(ApplicationJob job) {
        AiravataRegistry2 airavataRegistry = RegPoolUtils.acquireRegistry(context);
        try {
            airavataRegistry.updateApplicationJob(job);
            Response.ResponseBuilder builder = Response.status(Response.Status.OK);
            builder.entity("GFac Job updated successfully");
            return builder.build();
        } catch (Throwable e) {
            return WebAppUtil.reportInternalServerError(ResourcePathConstants.ProvenanceResourcePathConstants.UPDATE_APPLICATION_JOB, e);
View Full Code Here

Examples of org.apache.airavata.registry.api.AiravataRegistry2.updateApplicationJob()

    @Consumes({MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML})
    @Produces(MediaType.TEXT_PLAIN)
    public Response updateApplicationJob(ApplicationJob job) {
        AiravataRegistry2 airavataRegistry = RegPoolUtils.acquireRegistry(context);
        try {
            airavataRegistry.updateApplicationJob(job);
            Response.ResponseBuilder builder = Response.status(Response.Status.OK);
            builder.entity("GFac Job updated successfully");
            return builder.build();
        } catch (Throwable e) {
            return WebAppUtil.reportInternalServerError(ResourcePathConstants.ProvenanceResourcePathConstants.UPDATE_APPLICATION_JOB, e);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.