org.apache.camel.component.dhis2.internal.Dhis2ApiName Maven / Gradle / Ivy
/*
* Camel ApiName Enumeration generated by camel-api-component-maven-plugin
*/
package org.apache.camel.component.dhis2.internal;
import org.apache.camel.support.component.ApiName;
/**
* Camel {@link ApiName} Enumeration for Component Dhis2
*/
public enum Dhis2ApiName implements ApiName {
POST("post"),
RESOURCE_TABLES("resourceTables"),
GET("get"),
DELETE("delete"),
PUT("put");
private final String name;
private Dhis2ApiName(String name) {
this.name = name;
}
@Override
public String getName() {
return name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy