org.apache.camel.component.braintree.PlanGatewayEndpointConfiguration Maven / Gradle / Ivy
/*
* Camel EndpointConfiguration generated by camel-api-component-maven-plugin
*/
package org.apache.camel.component.braintree;
import org.apache.camel.spi.ApiMethod;
import org.apache.camel.spi.ApiParam;
import org.apache.camel.spi.ApiParams;
import org.apache.camel.spi.Configurer;
import org.apache.camel.spi.UriParam;
import org.apache.camel.spi.UriParams;
/**
* Camel endpoint configuration for {@link com.braintreegateway.PlanGateway}.
*/
@ApiParams(apiName = "plan",
description = "",
apiMethods = {@ApiMethod(methodName = "all", signatures={"java.util.List all()"}), @ApiMethod(methodName = "create", signatures={"com.braintreegateway.Result create(com.braintreegateway.PlanRequest request)"}), @ApiMethod(methodName = "find", signatures={"com.braintreegateway.Plan find(String id)"}), @ApiMethod(methodName = "update", signatures={"com.braintreegateway.Result update(String id, com.braintreegateway.PlanRequest request)"})}, aliases = {})
@UriParams
@Configurer(extended = true)
public final class PlanGatewayEndpointConfiguration extends BraintreeConfiguration {
@UriParam
@ApiParam(optional = false, apiMethods = {@ApiMethod(methodName = "find"), @ApiMethod(methodName = "update")})
private String id;
@UriParam
@ApiParam(optional = false, apiMethods = {@ApiMethod(methodName = "create"), @ApiMethod(methodName = "update")})
private com.braintreegateway.PlanRequest request;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public com.braintreegateway.PlanRequest getRequest() {
return request;
}
public void setRequest(com.braintreegateway.PlanRequest request) {
this.request = request;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy