org.apache.camel.component.linkedin.internal.JobsResourceApiMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camel-linkedin Show documentation
Show all versions of camel-linkedin Show documentation
Camel Component for LinkedIn
/*
* Camel ApiMethod Enumeration generated by camel-api-component-maven-plugin
* Generated on: Sat Mar 28 08:00:24 UTC 2015
*/
package org.apache.camel.component.linkedin.internal;
import java.lang.reflect.Method;
import java.util.List;
import org.apache.camel.component.linkedin.api.JobsResource;
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.JobsResource
*/
public enum JobsResourceApiMethod implements ApiMethod {
EDITJOB(void.class, "editJob", long.class, "partner_job_id", org.apache.camel.component.linkedin.api.model.Job.class, "job"),
GETJOB(org.apache.camel.component.linkedin.api.model.Job.class, "getJob", long.class, "job_id", String.class, "fields"),
REMOVEJOB(void.class, "removeJob", long.class, "partner_job_id");
private final ApiMethod apiMethod;
private JobsResourceApiMethod(Class> resultType, String name, Object... args) {
this.apiMethod = new ApiMethodImpl(JobsResource.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(); }
}