
com.vendasta.salesorders.v1.internal.CreateSalesOrderResponse 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;
/**
* Response of creating an order
**/
public final class CreateSalesOrderResponse {
private final String orderId;
private CreateSalesOrderResponse (
final String orderId)
{
this.orderId = orderId;
}
/**
* Unique identifier of an order
* @return The final value of orderId on the object
**/
public String getOrderId() {
return this.orderId;
}
public static class Builder {
private String orderId;
public Builder() {
this.orderId = "";
}
/**
* 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;
}
/**
* Takes the configuration in the mutable Builder and uses it to instantiate a final instance
* of the CreateSalesOrderResponse class
* @return The instantiated final CreateSalesOrderResponse
**/
public CreateSalesOrderResponse build() {
return new CreateSalesOrderResponse(
this.orderId);
}
}
/**
* Returns a Builder for CreateSalesOrderResponse, which is a mutable representation of the object. Once the
* client has built up an object they can then create an immutable CreateSalesOrderResponse 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 CreateSalesOrderResponse instance
**/
public String toString() {
String result = "CreateSalesOrderResponse\n";
result += "-> orderId: (String)"
+ StringUtils.join("\n ", Arrays.asList(String.valueOf(this.orderId).split("\n"))) + "\n";
return result;
}
/**
* Allows for simple conversion between the low-level generated protobuf object to
* CreateSalesOrderResponse, which is much more usable.
* @return An instance of CreateSalesOrderResponse representing the input proto object
**/
public static CreateSalesOrderResponse fromProto(ApiProto.CreateSalesOrderResponse proto) {
CreateSalesOrderResponse out = null;
if (proto != null) {
CreateSalesOrderResponse.Builder outBuilder = CreateSalesOrderResponse.newBuilder()
.setOrderId(proto.getOrderId());
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 CreateSalesOrderResponse instances representing the input proto objects
**/
public static List fromProtos(List protos) {
List out = new ArrayList();
for(ApiProto.CreateSalesOrderResponse proto : protos) {
out.add(CreateSalesOrderResponse.fromProto(proto));
}
return out;
}
/**
* Allows for simple conversion of an object to the low-level generated protobuf object.
* @return An instance of ApiProto.CreateSalesOrderResponse which is a proto object ready for wire transmission
**/
public ApiProto.CreateSalesOrderResponse toProto() {
CreateSalesOrderResponse obj = this;
ApiProto.CreateSalesOrderResponse.Builder outBuilder = ApiProto.CreateSalesOrderResponse.newBuilder();
outBuilder.setOrderId(obj.getOrderId());
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.CreateSalesOrderResponse instances representing the input objects.
*/
public static List toProtos(List objects) {
List out = new ArrayList();
if(objects != null) {
for (CreateSalesOrderResponse obj : objects) {
out.add(obj!=null?obj.toProto():null);
}
}
return out;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy