com.braintreegateway.TransactionIndustryRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.braintree-java
Show all versions of org.apache.servicemix.bundles.braintree-java
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
The newest version!
package com.braintreegateway;
public class TransactionIndustryRequest extends IndustryRequest {
private TransactionRequest parent;
public TransactionIndustryRequest(TransactionRequest parent) {
this.parent = parent;
}
public TransactionIndustryRequest industryType(Transaction.IndustryType industryType) {
super.industryType(industryType);
return this;
}
public TransactionIndustryDataRequest data(String data) {
super.data = new TransactionIndustryDataRequest(this);
return super.data;
}
public TransactionRequest done() {
return parent;
}
}