org.apache.camel.component.dhis2.internal.Dhis2ResourceTablesApiMethod Maven / Gradle / Ivy
/*
* Camel ApiMethod Enumeration generated by camel-api-component-maven-plugin
*/
package org.apache.camel.component.dhis2.internal;
import java.lang.reflect.Method;
import java.util.List;
import org.apache.camel.component.dhis2.api.Dhis2ResourceTables;
import org.apache.camel.support.component.ApiMethod;
import org.apache.camel.support.component.ApiMethodArg;
import org.apache.camel.support.component.ApiMethodImpl;
import static org.apache.camel.support.component.ApiMethodArg.arg;
/**
* Camel {@link ApiMethod} Enumeration for org.apache.camel.component.dhis2.api.Dhis2ResourceTables
*/
public enum Dhis2ResourceTablesApiMethod implements ApiMethod {
ANALYTICS(
void.class,
"analytics",
arg("skipAggregate", Boolean.class),
arg("skipEvents", Boolean.class),
arg("lastYears", Integer.class),
arg("interval", Integer.class),
arg("async", Boolean.class));
private final ApiMethod apiMethod;
private Dhis2ResourceTablesApiMethod(Class> resultType, String name, ApiMethodArg... args) {
this.apiMethod = new ApiMethodImpl(Dhis2ResourceTables.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 - 2025 Weber Informatics LLC | Privacy Policy