
com.vendasta.salesorders.v1.internal.GetSalesOrderRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of salesorders.v1 Show documentation
Show all versions of salesorders.v1 Show documentation
Java SDK for service sales-orders
The newest version!
package com.vendasta.salesorders.v1.internal;
import java.util.List;
import java.util.ArrayList;
import java.util.Date;
import java.util.Map;
import java.util.HashMap;
import java.util.Collections;
import java.util.Arrays;
import org.apache.commons.lang3.StringUtils;
import com.vendasta.salesorders.v1.generated.ApiProto;
/**
* Containing information to get an order
**/
public final class GetSalesOrderRequest {
private final String orderId;
private final String businessId;
private GetSalesOrderRequest (
final String orderId,
final String businessId)
{
this.orderId = orderId;
this.businessId = businessId;
}
/**
* Unique identifier of an order
* @return The final value of orderId on the object
**/
public String getOrderId() {
return this.orderId;
}
/**
* The business the order belongs to
* @return The final value of businessId on the object
**/
public String getBusinessId() {
return this.businessId;
}
public static class Builder {
private String orderId;
private String businessId;
public Builder() {
this.orderId = "";
this.businessId = "";
}
/**
* Adds a value to the builder for orderId
* @param orderId Value to assign to the mutable Builder
* @return The Builder instance so that call chaining works
**/
public Builder setOrderId(String orderId) {
this.orderId = orderId;
return this;
}
/**
* Adds a value to the builder for businessId
* @param businessId Value to assign to the mutable Builder
* @return The Builder instance so that call chaining works
**/
public Builder setBusinessId(String businessId) {
this.businessId = businessId;
return this;
}
/**
* Takes the configuration in the mutable Builder and uses it to instantiate a final instance
* of the GetSalesOrderRequest class
* @return The instantiated final GetSalesOrderRequest
**/
public GetSalesOrderRequest build() {
return new GetSalesOrderRequest(
this.orderId,
this.businessId);
}
}
/**
* Returns a Builder for GetSalesOrderRequest, which is a mutable representation of the object. Once the
* client has built up an object they can then create an immutable GetSalesOrderRequest object using the
* build function.
* @return A fresh Builder instance with no values set
**/
public static Builder newBuilder() {
return new Builder();
}
/**
* Provides a human-readable representation of this object. Useful for debugging.
* @return A string representation of the GetSalesOrderRequest instance
**/
public String toString() {
String result = "GetSalesOrderRequest\n";
result += "-> orderId: (String)"
+ StringUtils.join("\n ", Arrays.asList(String.valueOf(this.orderId).split("\n"))) + "\n";
result += "-> businessId: (String)"
+ StringUtils.join("\n ", Arrays.asList(String.valueOf(this.businessId).split("\n"))) + "\n";
return result;
}
/**
* Allows for simple conversion between the low-level generated protobuf object to
* GetSalesOrderRequest, which is much more usable.
* @return An instance of GetSalesOrderRequest representing the input proto object
**/
public static GetSalesOrderRequest fromProto(ApiProto.GetSalesOrderRequest proto) {
GetSalesOrderRequest out = null;
if (proto != null) {
GetSalesOrderRequest.Builder outBuilder = GetSalesOrderRequest.newBuilder()
.setOrderId(proto.getOrderId())
.setBusinessId(proto.getBusinessId());
out = outBuilder.build();
}
return out;
}
/**
* Convenience method for handling lists of proto objects. It calls .fromProto on each one
* and returns a list of the converted results.
* @return A list of GetSalesOrderRequest instances representing the input proto objects
**/
public static List fromProtos(List protos) {
List out = new ArrayList();
for(ApiProto.GetSalesOrderRequest proto : protos) {
out.add(GetSalesOrderRequest.fromProto(proto));
}
return out;
}
/**
* Allows for simple conversion of an object to the low-level generated protobuf object.
* @return An instance of ApiProto.GetSalesOrderRequest which is a proto object ready for wire transmission
**/
public ApiProto.GetSalesOrderRequest toProto() {
GetSalesOrderRequest obj = this;
ApiProto.GetSalesOrderRequest.Builder outBuilder = ApiProto.GetSalesOrderRequest.newBuilder();
outBuilder.setOrderId(obj.getOrderId());
outBuilder.setBusinessId(obj.getBusinessId());
return outBuilder.build();
}
/**
* Convenience method for handling lists of objects. It calls .toProto on each one and
* returns a list of the converted results.
* @return A list of ApiProto.GetSalesOrderRequest instances representing the input objects.
*/
public static List toProtos(List objects) {
List out = new ArrayList();
if(objects != null) {
for (GetSalesOrderRequest obj : objects) {
out.add(obj!=null?obj.toProto():null);
}
}
return out;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy