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

org.apache.camel.component.braintree.internal.MerchantAccountGatewayApiMethod Maven / Gradle / Ivy

There is a newer version: 4.8.1
Show newest version

/*
 * Camel ApiMethod Enumeration generated by camel-api-component-maven-plugin
 */
package org.apache.camel.component.braintree.internal;

import java.lang.reflect.Method;
import java.util.List;

import com.braintreegateway.MerchantAccountGateway;

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 com.braintreegateway.MerchantAccountGateway
 */
public enum MerchantAccountGatewayApiMethod implements ApiMethod {

    ALL(
        com.braintreegateway.PaginatedCollection.class,
        "all"),
    CREATE(
        com.braintreegateway.Result.class,
        "create",
        arg("request", com.braintreegateway.MerchantAccountRequest.class)),
    CREATEFORCURRENCY(
        com.braintreegateway.Result.class,
        "createForCurrency",
        arg("currencyRequest", com.braintreegateway.MerchantAccountCreateForCurrencyRequest.class)),
    FETCHMERCHANTACCOUNTS(
        com.braintreegateway.PaginatedResult.class,
        "fetchMerchantAccounts",
        arg("page", int.class)),
    FIND(
        com.braintreegateway.MerchantAccount.class,
        "find",
        arg("id", String.class)),
    UPDATE(
        com.braintreegateway.Result.class,
        "update",
        arg("id", String.class),
        arg("request", com.braintreegateway.MerchantAccountRequest.class));
    

    private final ApiMethod apiMethod;

    private MerchantAccountGatewayApiMethod(Class resultType, String name, ApiMethodArg... args) {
        this.apiMethod = new ApiMethodImpl(MerchantAccountGateway.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