Class CustomerGatewayEndpointConfiguration
- java.lang.Object
-
- org.apache.camel.component.braintree.BraintreeConfiguration
-
- org.apache.camel.component.braintree.CustomerGatewayEndpointConfiguration
-
@ApiParams(apiName="customer",description="Provides methods to create, delete, find, and update Customer objects",apiMethods={@ApiMethod(methodName="all",description="Finds all Customers and returns a ResourceCollection",signatures="com.braintreegateway.ResourceCollection<com.braintreegateway.Customer> all()"),@ApiMethod(methodName="create",description="Creates a Customer",signatures="com.braintreegateway.Result<com.braintreegateway.Customer> create(com.braintreegateway.CustomerRequest request)"),@ApiMethod(methodName="delete",description="Deletes a Customer by id",signatures="com.braintreegateway.Result<com.braintreegateway.Customer> delete(String id)"),@ApiMethod(methodName="find",description="Finds a Customer by id",signatures={"com.braintreegateway.Customer find(String id)","com.braintreegateway.Customer find(String id, String associationFilterId)"}),@ApiMethod(methodName="search",description="Finds all Transactions that match the query and returns a ResourceCollection",signatures="com.braintreegateway.ResourceCollection<com.braintreegateway.Customer> search(com.braintreegateway.CustomerSearchRequest query)"),@ApiMethod(methodName="update",description="Updates a Customer",signatures="com.braintreegateway.Result<com.braintreegateway.Customer> update(String id, com.braintreegateway.CustomerRequest request)")},aliases={}) @UriParams @Configurer(extended=true) public final class CustomerGatewayEndpointConfiguration extends BraintreeConfiguration
Camel endpoint configuration forCustomerGateway
.
-
-
Constructor Summary
Constructors Constructor Description CustomerGatewayEndpointConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAssociationFilterId()
String
getId()
com.braintreegateway.CustomerSearchRequest
getQuery()
com.braintreegateway.CustomerRequest
getRequest()
void
setAssociationFilterId(String associationFilterId)
void
setId(String id)
void
setQuery(com.braintreegateway.CustomerSearchRequest query)
void
setRequest(com.braintreegateway.CustomerRequest request)
-
Methods inherited from class org.apache.camel.component.braintree.BraintreeConfiguration
getAccessToken, getApiName, getEnvironment, getHttpLogLevel, getHttpLogName, getHttpReadTimeout, getMerchantId, getMethodName, getPrivateKey, getProxyHost, getProxyPort, getPublicKey, isLogHandlerEnabled, setAccessToken, setApiName, setEnvironment, setHttpLogLevel, setHttpLogName, setHttpReadTimeout, setLogHandlerEnabled, setMerchantId, setMethodName, setPrivateKey, setProxyHost, setProxyPort, setPublicKey
-
-
-
-
Method Detail
-
getAssociationFilterId
public String getAssociationFilterId()
-
setAssociationFilterId
public void setAssociationFilterId(String associationFilterId)
-
getId
public String getId()
-
setId
public void setId(String id)
-
getQuery
public com.braintreegateway.CustomerSearchRequest getQuery()
-
setQuery
public void setQuery(com.braintreegateway.CustomerSearchRequest query)
-
getRequest
public com.braintreegateway.CustomerRequest getRequest()
-
setRequest
public void setRequest(com.braintreegateway.CustomerRequest request)
-
-