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

org.apache.camel.component.dhis2.Dhis2PutEndpointConfiguration Maven / Gradle / Ivy

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

import org.apache.camel.spi.ApiMethod;
import org.apache.camel.spi.ApiParam;
import org.apache.camel.spi.ApiParams;
import org.apache.camel.spi.Configurer;
import org.apache.camel.spi.UriParam;
import org.apache.camel.spi.UriParams;

/**
 * Camel endpoint configuration for {@link org.apache.camel.component.dhis2.api.Dhis2Put}.
 */
@ApiParams(apiName = "put", 
           description = "",
           apiMethods = {@ApiMethod(methodName = "resource", signatures={"java.io.InputStream resource(String path, Object resource, java.util.Map queryParams)"})}, aliases = {})
@UriParams
@Configurer(extended = true)
public final class Dhis2PutEndpointConfiguration extends Dhis2Configuration {
    @UriParam
    @ApiParam(optional = false, apiMethods = {@ApiMethod(methodName = "resource")})
    private String path;
    @UriParam
    @ApiParam(optional = true, apiMethods = {@ApiMethod(methodName = "resource")})
    private java.util.Map queryParams;
    @UriParam
    @ApiParam(optional = true, apiMethods = {@ApiMethod(methodName = "resource")})
    private Object resource;

    public String getPath() {
        return path;
    }

    public void setPath(String path) {
        this.path = path;
    }

    public java.util.Map getQueryParams() {
        return queryParams;
    }

    public void setQueryParams(java.util.Map queryParams) {
        this.queryParams = queryParams;
    }

    public Object getResource() {
        return resource;
    }

    public void setResource(Object resource) {
        this.resource = resource;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy