All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.camel.component.linkedin.api.CommentsResource Maven / Gradle / Ivy

There is a newer version: 2.15.6
Show newest version
/**
 * Created by Apache CXF WadlToJava code generator
**/
package org.apache.camel.component.linkedin.api;

import javax.ws.rs.DELETE;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import org.apache.camel.component.linkedin.api.model.Comment;

@Path("comments")
public interface CommentsResource {

    @GET
    @Produces("application/xml")
    @Path("/{comment-id}{fields}")
    Comment getComment(@PathParam("comment-id") String comment_id, @PathParam("fields") String fields);

    @DELETE
    @Path("/{comment-id}")
    void removeComment(@PathParam("comment-id") String comment_id);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy