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

org.apache.camel.component.linkedin.internal.PostsResourceApiMethod Maven / Gradle / Ivy

There is a newer version: 2.15.6
Show newest version
/*
 * Camel ApiMethod Enumeration generated by camel-api-component-maven-plugin
 * Generated on: Sat Aug 15 16:30:00 EDT 2015
 */
package org.apache.camel.component.linkedin.internal;

import java.lang.reflect.Method;
import java.util.List;

import org.apache.camel.component.linkedin.api.PostsResource;

import org.apache.camel.util.component.ApiMethod;
import org.apache.camel.util.component.ApiMethodImpl;

/**
 * Camel {@link ApiMethod} Enumeration for org.apache.camel.component.linkedin.api.PostsResource
 */
public enum PostsResourceApiMethod implements ApiMethod {

    ADDCOMMENT(void.class, "addComment", String.class, "post_id", org.apache.camel.component.linkedin.api.model.Comment.class, "comment"),
    FLAGCATEGORY(void.class, "flagCategory", String.class, "post_id", org.apache.camel.component.linkedin.api.model.PostCategoryCode.class, "postcategorycode"),
    FOLLOWPOST(void.class, "followPost", String.class, "post_id", org.apache.camel.component.linkedin.api.model.IsFollowing.class, "isfollowing"),
    GETPOST(org.apache.camel.component.linkedin.api.model.Post.class, "getPost", String.class, "post_id", Long.class, "count", Long.class, "start", String.class, "fields"),
    GETPOSTCOMMENTS(org.apache.camel.component.linkedin.api.model.Comments.class, "getPostComments", String.class, "post_id", Long.class, "count", Long.class, "start", String.class, "fields"),
    LIKEPOST(void.class, "likePost", String.class, "post_id", org.apache.camel.component.linkedin.api.model.IsLiked.class, "isliked"),
    REMOVEPOST(void.class, "removePost", String.class, "post_id");

    private final ApiMethod apiMethod;

    private PostsResourceApiMethod(Class resultType, String name, Object... args) {
        this.apiMethod = new ApiMethodImpl(PostsResource.class, resultType, name, args);
    }

    @Override
    public String getName() { return apiMethod.getName(); }

    @Override
    public Class getResultType() { return apiMethod.getResultType(); }

    @Override
    public List getArgNames() { return apiMethod.getArgNames(); }

    @Override
    public List> getArgTypes() { return apiMethod.getArgTypes(); }

    @Override
    public Method getMethod() { return apiMethod.getMethod(); }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy