public class ProductOrder extends Object
Modifier and Type | Class and Description |
---|---|
static class |
ProductOrder.Builder<T extends ProductOrder.Builder<T>> |
Modifier | Constructor and Description |
---|---|
protected |
ProductOrder(int packageId,
String location,
Set<ProductItemPrice> prices,
Set<VirtualGuest> virtualGuests,
int quantity,
boolean useHourlyPricing) |
Modifier and Type | Method and Description |
---|---|
static ProductOrder.Builder<?> |
builder() |
boolean |
equals(Object obj) |
String |
getLocation() |
int |
getPackageId() |
Set<ProductItemPrice> |
getPrices()
Gets the item prices in this order.
|
int |
getQuantity() |
boolean |
getUseHourlyPricing() |
Set<VirtualGuest> |
getVirtualGuests()
Gets the virtual guests in this order.
|
int |
hashCode() |
protected com.google.common.base.Objects.ToStringHelper |
string() |
ProductOrder.Builder<?> |
toBuilder() |
String |
toString() |
@ConstructorProperties(value={"packageId","location","prices","virtualGuest","quantity","useHourlyPricing"}) protected ProductOrder(int packageId, @Nullable String location, @Nullable Set<ProductItemPrice> prices, @Nullable Set<VirtualGuest> virtualGuests, int quantity, boolean useHourlyPricing)
public static ProductOrder.Builder<?> builder()
public ProductOrder.Builder<?> toBuilder()
public int getPackageId()
@Nullable public String getLocation()
public Set<ProductItemPrice> getPrices()
public Set<VirtualGuest> getVirtualGuests()
public int getQuantity()
public boolean getUseHourlyPricing()
protected com.google.common.base.Objects.ToStringHelper string()
Copyright © 2009-2013 jclouds. All Rights Reserved.