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

org.apache.camel.component.as2.internal.AS2ApiName Maven / Gradle / Ivy

There is a newer version: 4.8.1
Show newest version
/*
 * Camel ApiName Enumeration generated by camel-api-component-maven-plugin
 */
package org.apache.camel.component.as2.internal;

import org.apache.camel.support.component.ApiName;

/**
 * Camel {@link ApiName} Enumeration for Component AS2
 */
public enum AS2ApiName implements ApiName {

    CLIENT("client"),

    SERVER("server"),

    RECEIPT("receipt");


    private final String name;

    private AS2ApiName(String name) {
        this.name = name;
    }

    @Override
    public String getName() {
        return name;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy