com.braintreegateway.SubscriptionDescriptorRequest 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 SubscriptionDescriptorRequest extends DescriptorRequest {
private SubscriptionRequest parent;
public SubscriptionDescriptorRequest(SubscriptionRequest parent) {
this.parent = parent;
}
public SubscriptionDescriptorRequest name(String name) {
super.name(name);
return this;
}
public SubscriptionDescriptorRequest phone(String phone) {
super.phone(phone);
return this;
}
public SubscriptionDescriptorRequest url(String url) {
super.url(url);
return this;
}
public SubscriptionRequest done() {
return parent;
}
}