Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import org.apache.commons.lang3.builder.HashCodeBuilder;

/**
* <p>Checks if an active Cart exists in a Store. Returns <code>200</code> status if successful.</p>
* <p>Checks if an active Cart exists in a Store. Returns <code>200 OK</code> status if successful.</p>
* <p>A ResourceNotFound error is returned in the following scenarios:</p>
* <ul>
* <li>If no active Cart exists in a Store.</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import org.apache.commons.lang3.builder.HashCodeBuilder;

/**
* <p>Retrieves a ShoppingList with the provided <code>id</code> for the authenticated Customer or anonymous user in a Store. Returns <code>200</code> status if successful.</p>
* <p>Retrieves a ShoppingList with the provided <code>id</code> for the authenticated Customer or anonymous user in a Store. Returns <code>200 OK</code> status if successful.</p>
* <p>A ResourceNotFound error is returned in the following scenarios:</p>
* <ul>
* <li>If no ShoppingList matches the provided <code>id</code> in a Store.</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import org.apache.commons.lang3.builder.HashCodeBuilder;

/**
* <p>Retrieves ShoppingLists for the authenticated Customer or anonymous user in a Store. Returns <code>200</code> status if successful.</p>
* <p>Retrieves ShoppingLists for the authenticated Customer or anonymous user in a Store. Returns <code>200 OK</code> status if successful.</p>
* <p>A ResourceNotFound error is returned in the following scenarios:</p>
* <ul>
* <li>If no ShoppingLists exist in a Store.</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import org.apache.commons.lang3.builder.HashCodeBuilder;

/**
* <p>Checks if one or more ShoppingLists exist for the provided query predicate for the authenticated Customer or anonymous user in a Store. Returns <code>200</code> status if successful.</p>
* <p>Checks if one or more ShoppingLists exist for the provided query predicate for the authenticated Customer or anonymous user in a Store. Returns <code>200 OK</code> status if successful.</p>
* <p>A Not Found error is returned in the following scenarios:</p>
* <ul>
* <li>If no ShoppingLists exist for the provided query predicate in a Store.</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import org.apache.commons.lang3.builder.HashCodeBuilder;

/**
* <p>Retrieves a ShoppingList with the provided <code>key</code> for the authenticated Customer or anonymous user in a Store. Returns <code>200</code> status if successful.</p>
* <p>Retrieves a ShoppingList with the provided <code>key</code> for the authenticated Customer or anonymous user in a Store. Returns <code>200 OK</code> status if successful.</p>
* <p>A ResourceNotFound error is returned in the following scenarios:</p>
* <ul>
* <li>If no ShoppingList matches the provided <code>key</code> in a Store.</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,32 +18,28 @@ public ByProjectKeyInStoreKeyByStoreKeyRequestBuilder(final ApiHttpClient apiHtt
this.storeKey = storeKey;
}

public ByProjectKeyInStoreKeyByStoreKeyCartsRequestBuilder carts() {
return new ByProjectKeyInStoreKeyByStoreKeyCartsRequestBuilder(apiHttpClient, projectKey, storeKey);
public ByProjectKeyInStoreKeyByStoreKeyBusinessUnitsRequestBuilder businessUnits() {
return new ByProjectKeyInStoreKeyByStoreKeyBusinessUnitsRequestBuilder(apiHttpClient, projectKey, storeKey);
}

public ByProjectKeyInStoreKeyByStoreKeyOrdersRequestBuilder orders() {
return new ByProjectKeyInStoreKeyByStoreKeyOrdersRequestBuilder(apiHttpClient, projectKey, storeKey);
public ByProjectKeyInStoreKeyByStoreKeyCartDiscountsRequestBuilder cartDiscounts() {
return new ByProjectKeyInStoreKeyByStoreKeyCartDiscountsRequestBuilder(apiHttpClient, projectKey, storeKey);
}

public ByProjectKeyInStoreKeyByStoreKeyMeRequestBuilder me() {
return new ByProjectKeyInStoreKeyByStoreKeyMeRequestBuilder(apiHttpClient, projectKey, storeKey);
public ByProjectKeyInStoreKeyByStoreKeyCartsRequestBuilder carts() {
return new ByProjectKeyInStoreKeyByStoreKeyCartsRequestBuilder(apiHttpClient, projectKey, storeKey);
}

public ByProjectKeyInStoreKeyByStoreKeyCustomersRequestBuilder customers() {
return new ByProjectKeyInStoreKeyByStoreKeyCustomersRequestBuilder(apiHttpClient, projectKey, storeKey);
}

public ByProjectKeyInStoreKeyByStoreKeyLoginRequestBuilder login() {
return new ByProjectKeyInStoreKeyByStoreKeyLoginRequestBuilder(apiHttpClient, projectKey, storeKey);
}

public ByProjectKeyInStoreKeyByStoreKeyShippingMethodsRequestBuilder shippingMethods() {
return new ByProjectKeyInStoreKeyByStoreKeyShippingMethodsRequestBuilder(apiHttpClient, projectKey, storeKey);
public ByProjectKeyInStoreKeyByStoreKeyMeRequestBuilder me() {
return new ByProjectKeyInStoreKeyByStoreKeyMeRequestBuilder(apiHttpClient, projectKey, storeKey);
}

public ByProjectKeyInStoreKeyByStoreKeyShoppingListsRequestBuilder shoppingLists() {
return new ByProjectKeyInStoreKeyByStoreKeyShoppingListsRequestBuilder(apiHttpClient, projectKey, storeKey);
public ByProjectKeyInStoreKeyByStoreKeyOrdersRequestBuilder orders() {
return new ByProjectKeyInStoreKeyByStoreKeyOrdersRequestBuilder(apiHttpClient, projectKey, storeKey);
}

public ByProjectKeyInStoreKeyByStoreKeyProductProjectionsRequestBuilder productProjections() {
Expand All @@ -56,10 +52,6 @@ public ByProjectKeyInStoreKeyByStoreKeyProductSelectionAssignmentsRequestBuilder
storeKey);
}

public ByProjectKeyInStoreKeyByStoreKeyCartDiscountsRequestBuilder cartDiscounts() {
return new ByProjectKeyInStoreKeyByStoreKeyCartDiscountsRequestBuilder(apiHttpClient, projectKey, storeKey);
}

public ByProjectKeyInStoreKeyByStoreKeyProductTailoringRequestBuilder productTailoring() {
return new ByProjectKeyInStoreKeyByStoreKeyProductTailoringRequestBuilder(apiHttpClient, projectKey, storeKey);
}
Expand All @@ -72,16 +64,24 @@ public ByProjectKeyInStoreKeyByStoreKeyQuoteRequestsRequestBuilder quoteRequests
return new ByProjectKeyInStoreKeyByStoreKeyQuoteRequestsRequestBuilder(apiHttpClient, projectKey, storeKey);
}

public ByProjectKeyInStoreKeyByStoreKeyStagedQuotesRequestBuilder stagedQuotes() {
return new ByProjectKeyInStoreKeyByStoreKeyStagedQuotesRequestBuilder(apiHttpClient, projectKey, storeKey);
}

public ByProjectKeyInStoreKeyByStoreKeyQuotesRequestBuilder quotes() {
return new ByProjectKeyInStoreKeyByStoreKeyQuotesRequestBuilder(apiHttpClient, projectKey, storeKey);
}

public ByProjectKeyInStoreKeyByStoreKeyBusinessUnitsRequestBuilder businessUnits() {
return new ByProjectKeyInStoreKeyByStoreKeyBusinessUnitsRequestBuilder(apiHttpClient, projectKey, storeKey);
public ByProjectKeyInStoreKeyByStoreKeyShippingMethodsRequestBuilder shippingMethods() {
return new ByProjectKeyInStoreKeyByStoreKeyShippingMethodsRequestBuilder(apiHttpClient, projectKey, storeKey);
}

public ByProjectKeyInStoreKeyByStoreKeyShoppingListsRequestBuilder shoppingLists() {
return new ByProjectKeyInStoreKeyByStoreKeyShoppingListsRequestBuilder(apiHttpClient, projectKey, storeKey);
}

public ByProjectKeyInStoreKeyByStoreKeyStagedQuotesRequestBuilder stagedQuotes() {
return new ByProjectKeyInStoreKeyByStoreKeyStagedQuotesRequestBuilder(apiHttpClient, projectKey, storeKey);
}

public ByProjectKeyInStoreKeyByStoreKeyLoginRequestBuilder login() {
return new ByProjectKeyInStoreKeyByStoreKeyLoginRequestBuilder(apiHttpClient, projectKey, storeKey);
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import org.apache.commons.lang3.builder.HashCodeBuilder;

/**
* <p>Checks if one or more ShoppingLists exist for the provided query predicate in a Store. Returns a <code>200</code> status if any ShoppingLists match the query predicate, or a <code>404</code> status otherwise.</p>
* <p>Checks if one or more ShoppingLists exist for the provided query predicate in a Store. Returns a <code>200</code> status if any ShoppingLists match the query predicate or, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
Expand Down
1 change: 1 addition & 0 deletions references.txt
Original file line number Diff line number Diff line change
Expand Up @@ -440,3 +440,4 @@ c12d33dda145602c607dcf1bb77f503f4508a1ee
4f44e52ef2a04385fb8da09182511dd63ff5ee37
5c92f154265d21fff776730b17f7c6f27cbfdcb7
cd07396232802b1c29238fb92214946462f19e5d
75be7d69ebbeef0c07001c09c4c84e318aead40c