public class ProductOrder extends Object
Modifier and Type | Class and Description |
---|---|
static class |
ProductOrder.Builder |
Constructor and Description |
---|
ProductOrder(int packageId,
String location,
Iterable<ProductItemPrice> prices,
Iterable<VirtualGuest> virtualGuest,
int quantity,
boolean useHourlyPricing) |
Modifier and Type | Method and Description |
---|---|
static ProductOrder.Builder |
builder() |
boolean |
equals(Object o) |
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() |
ProductOrder.Builder |
toBuilder() |
String |
toString() |
public ProductOrder(int packageId, String location, Iterable<ProductItemPrice> prices, Iterable<VirtualGuest> virtualGuest, int quantity, boolean useHourlyPricing)
public static ProductOrder.Builder builder()
public int getPackageId()
public String getLocation()
public Set<ProductItemPrice> getPrices()
public Set<VirtualGuest> getVirtualGuests()
public int getQuantity()
public boolean getUseHourlyPricing()
public ProductOrder.Builder toBuilder()
Copyright © 2009-2012 jclouds. All Rights Reserved.