org.apache.camel.component.olingo2.internal.Olingo2ApiName Maven / Gradle / Ivy
/*
* Camel ApiName Enumeration generated by camel-api-component-maven-plugin
*/
package org.apache.camel.component.olingo2.internal;
import org.apache.camel.support.component.ApiName;
/**
* Camel {@link ApiName} Enumeration for Component Olingo2
*/
public enum Olingo2ApiName implements ApiName {
DEFAULT("");
private final String name;
private Olingo2ApiName(String name) {
this.name = name;
}
@Override
public String getName() {
return name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy