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

org.apache.camel.component.linkedin.GroupsResourceEndpointConfiguration Maven / Gradle / Ivy

The newest version!

/*
 * Camel EndpointConfiguration generated by camel-api-component-maven-plugin
 */
package org.apache.camel.component.linkedin;

import org.apache.camel.spi.UriParam;
import org.apache.camel.spi.UriParams;

/**
 * Camel EndpointConfiguration for org.apache.camel.component.linkedin.api.GroupsResource
 */
@UriParams
public final class GroupsResourceEndpointConfiguration extends LinkedInConfiguration {

    @UriParam
    private org.apache.camel.component.linkedin.api.model.PostCategoryCode category;

    @UriParam
    private Long count;

    @UriParam
    private String fields;

    @UriParam
    private Long group_id;

    @UriParam
    private Long modified_since;

    @UriParam
    private org.apache.camel.component.linkedin.api.model.Order order;

    @UriParam
    private org.apache.camel.component.linkedin.api.model.Post post;

    @UriParam
    private Long start;

    public org.apache.camel.component.linkedin.api.model.PostCategoryCode getCategory() {
        return category;
    }

    public void setCategory(org.apache.camel.component.linkedin.api.model.PostCategoryCode category) {
        this.category = category;
    }

    public Long getCount() {
        return count;
    }

    public void setCount(Long count) {
        this.count = count;
    }

    public String getFields() {
        return fields;
    }

    public void setFields(String fields) {
        this.fields = fields;
    }

    public Long getGroup_id() {
        return group_id;
    }

    public void setGroup_id(Long group_id) {
        this.group_id = group_id;
    }

    public Long getModified_since() {
        return modified_since;
    }

    public void setModified_since(Long modified_since) {
        this.modified_since = modified_since;
    }

    public org.apache.camel.component.linkedin.api.model.Order getOrder() {
        return order;
    }

    public void setOrder(org.apache.camel.component.linkedin.api.model.Order order) {
        this.order = order;
    }

    public org.apache.camel.component.linkedin.api.model.Post getPost() {
        return post;
    }

    public void setPost(org.apache.camel.component.linkedin.api.model.Post post) {
        this.post = post;
    }

    public Long getStart() {
        return start;
    }

    public void setStart(Long start) {
        this.start = start;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy