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 API Client exists with the provided <code>id</code>. Returns a <code>200 OK</code> status if the API Client exists or a <code>404 Not Found</code> otherwise.</p>
* <p>Checks if an API Client exists with the provided <code>id</code>. Returns a <code>200</code> status if the API Client exists, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
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 an API Client exists for the provided query predicate. Returns a <code>200 OK</code> status if any API Clients match the query predicate, or a <code>404 Not Found</code> otherwise.</p>
* <p>Checks if an API Client exists for the provided query predicate. Returns a <code>200</code> status if any API Clients match the query predicate, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
Expand Down
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 a BusinessUnit exists with the provided <code>id</code>. Returns a <code>200 OK</code> status if the BusinessUnit exists or a <code>404 Not Found</code> otherwise.</p>
* <p>Checks if a BusinessUnit exists with the provided <code>id</code>. Returns a <code>200</code> status if the BusinessUnit exists, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
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 BusinessUnits exist for the provided query predicate. Returns a <code>200 OK</code> status if any BusinessUnits match the query predicate, or a <code>404 Not Found</code> otherwise.</p>
* <p>Checks if one or more BusinessUnits exist for the provided query predicate. Returns a <code>200</code> status if any BusinessUnits match the query predicate, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
Expand Down
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 a BusinessUnit exists with the provided <code>key</code>. Returns a <code>200 OK</code> status if the BusinessUnit exists or a <code>404 Not Found</code> otherwise.</p>
* <p>Checks if a BusinessUnit exists with the provided <code>key</code>. Returns a <code>200</code> status if the BusinessUnit exists, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
Expand Down
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 a Cart exists with the provided <code>id</code>. Returns a <code>200 OK</code> status if the Cart exists or Not Found otherwise.</p>
* <p>Checks if a Cart exists with the provided <code>id</code>. Returns a <code>200</code> status if the Cart exists, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
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 Carts exist for the provided query predicate. Returns a <code>200 OK</code> status if any Carts match the query predicate, or a <code>404 Not Found</code> otherwise.</p>
* <p>Checks if one or more Carts exist for the provided query predicate. Returns a <code>200</code> status if any Carts match the query predicate, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
Expand Down
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 a Cart exists with the provided <code>key</code>. Returns a <code>200 OK</code> status if the Cart exists or Not Found otherwise.</p>
* <p>Checks if a Cart exists with the provided <code>key</code>. Returns a <code>200</code> status if the Cart exists, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
Expand Down
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 Order exists with the provided <code>id</code> in a BusinessUnit. Returns a <code>200 OK</code> status if the Order exists or a <code>404 Not Found</code> otherwise.</p>
* <p>Checks if an Order exists with the provided <code>id</code> in a BusinessUnit. Returns a <code>200</code> status if the Order exists, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
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 Orders exist with provided query predicate in a BusinessUnit. Returns a <code>200 OK</code> status if any Orders match the query predicate, or a <code>404 Not Found</code> otherwise.</p>
* <p>Checks if one or more Orders exist with provided query predicate in a BusinessUnit. Returns a <code>200</code> status if any Orders match the query predicate, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
Expand Down
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 Order exists with the provided <code>orderNumber</code> in a BusinessUnit. Returns a <code>200 OK</code> status if the Order exists or a <code>404 Not Found</code> otherwise.</p>
* <p>Checks if an Order exists with the provided <code>orderNumber</code> in a BusinessUnit. Returns a <code>200</code> status if the Order exists, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
Expand Down
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 a QuoteRequest exists with the provided <code>id</code>. Returns a <code>200 OK</code> status if the QuoteRequest exists or a <code>404 Not Found</code> otherwise.</p>
* <p>Checks if a QuoteRequest exists with the provided <code>id</code>. Returns a <code>200</code> status if the QuoteRequest exists, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
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 QuoteRequests exist for the provided query predicate. Returns a <code>200 OK</code> status if any QuoteRequests match the query predicate, or a <code>404 Not Found</code> otherwise.</p>
* <p>Checks if one or more QuoteRequests exist for the provided query predicate. Returns a <code>200</code> status if any QuoteRequests match the query predicate, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
Expand Down
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 a QuoteRequest exists with the provided <code>key</code>. Returns a <code>200 OK</code> status if the QuoteRequest exists or a <code>404 Not Found</code> otherwise.</p>
* <p>Checks if a QuoteRequest exists with the provided <code>key</code>. Returns a <code>200</code> status if the QuoteRequest exists, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
Expand Down
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 a Quote exists with the provided <code>id</code>. Returns a <code>200 OK</code> status if the Quote exists or a <code>404 Not Found</code> otherwise.</p>
* <p>Checks if a Quote exists with the provided <code>id</code>. Returns a <code>200</code> status if the Quote exists, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
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 Quotes exist for the provided query predicate. Returns a <code>200 OK</code> status if any Quotes match the query predicate, or a <code>404 Not Found</code> otherwise.</p>
* <p>Checks if one or more Quotes exist for the provided query predicate. Returns a <code>200</code> status if any Quotes match the query predicate, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
Expand Down
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 a Quote exists with the provided <code>key</code>. Returns a <code>200 OK</code> status if the Quote exists or a <code>404 Not Found</code> otherwise.</p>
* <p>Checks if a Quote exists with the provided <code>key</code>. Returns a <code>200</code> status if the Quote exists, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
Expand Down
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 a ShoppingList exists with the provided <code>id</code> in a BusinessUnit. Returns a <code>200 OK</code> if the ShoppingList exists; otherwise, returns Not Found.</p>
* <p>Checks if a ShoppingList exists with the provided <code>id</code> in a BusinessUnit. Returns a <code>200</code> status if the ShoppingList exists, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
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 in a BusinessUnit. Returns a <code>200 OK</code> if any ShoppingLists match the query predicate; otherwise, returns Not Found.</p>
* <p>Checks if one or more ShoppingLists exist for the provided query predicate in a BusinessUnit. Returns a <code>200</code> status if any ShoppingLists match the query predicate, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
Expand Down
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 a ShoppingList exists with the provided <code>key</code> in a BusinessUnit. Returns a <code>200 OK</code> if the ShoppingList exists; otherwise, returns Not Found.</p>
* <p>Checks if a ShoppingList exists with the provided <code>key</code> in a BusinessUnit. Returns a <code>200</code> status if the ShoppingList exists, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
Expand Down
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 AssociateRole exists with the provided <code>id</code>. Returns a <code>200 OK</code> status if the AssociateRole exists or a <code>404 Not Found</code> otherwise.</p>
* <p>Checks if an AssociateRole exists with the provided <code>id</code>. Returns a <code>200</code> status if the AssociateRole exists, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
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 AssociateRoles exist for the provided query predicate. Returns a <code>200 OK</code> status if any AssociateRole match the query predicate, or a <code>404 Not Found</code> otherwise.</p>
* <p>Checks if one or more AssociateRoles exist for the provided query predicate. Returns a <code>200</code> status if any AssociateRole match the query predicate, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
Expand Down
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 AssociateRole exists with the provided <code>key</code>. Returns a <code>200 OK</code> status if the AssociateRole exists or a <code>404 Not Found</code> otherwise.</p>
* <p>Checks if an AssociateRole exists with the provided <code>key</code>. Returns a <code>200</code> status if the AssociateRole exists, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
Expand Down
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 AttributeGroup exists with the provided <code>id</code>. Returns a <code>200 OK</code> status if the AttributeGroup exists or a <code>404 Not Found</code> otherwise.</p>
* <p>Checks if an AttributeGroup exists with the provided <code>id</code>. Returns a <code>200</code> status if the AttributeGroup exists, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
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 AttributeGroups exist for the provided query predicate. Returns <code>200 OK</code> status if any AttributeGroups match the query predicate, or a <code>404 Not Found</code> otherwise.</p>
* <p>Checks if one or more AttributeGroups exist for the provided query predicate. Returns <code>200</code> status if any AttributeGroups match the query predicate, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
Expand Down
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 AttributeGroup exists with the provided <code>key</code>. Returns <code>200 OK</code> status if the AttributeGroup exists or a <code>404 Not Found</code> otherwise.</p>
* <p>Checks if an AttributeGroup exists with the provided <code>key</code>. Returns <code>200</code> status if the AttributeGroup exists, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
Expand Down
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 a BusinessUnit exists with the provided <code>id</code>. Returns a <code>200 OK</code> status if the BusinessUnit exists or a <code>404 Not Found</code> otherwise.</p>
* <p>Checks if a BusinessUnit exists with the provided <code>id</code>. Returns a <code>200</code> status if the BusinessUnit exists, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
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 BusinessUnits exist for the provided query predicate. Returns a <code>200 OK</code> status if any BusinessUnits match the query predicate, or a <code>404 Not Found</code> otherwise.</p>
* <p>Checks if one or more BusinessUnits exist for the provided query predicate. Returns a <code>200</code> status if any BusinessUnits match the query predicate, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
Expand Down
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 a BusinessUnit exists with the provided <code>key</code>. Returns a <code>200 OK</code> status if the BusinessUnit exists or a <code>404 Not Found</code> otherwise.</p>
* <p>Checks if a BusinessUnit exists with the provided <code>key</code>. Returns a <code>200</code> status if the BusinessUnit exists, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
Expand Down
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 a CartDiscount exists with the provided <code>id</code>. Returns a <code>200 OK</code> status if the CartDiscount exists or a <code>404 Not Found</code> otherwise.</p>
* <p>Checks if a CartDiscount exists with the provided <code>id</code>. Returns a <code>200</code> status if the CartDiscount exists, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
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 CartDiscounts exist for the provided query predicate. Returns a <code>200 OK</code> status if any CartDiscounts match the query predicate, or a <code>404 Not Found</code> otherwise.</p>
* <p>Checks if one or more CartDiscounts exist for the provided query predicate. Returns a <code>200</code> status if any CartDiscounts match the query predicate, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
Expand Down
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 a CartDiscount exists with the provided <code>key</code>. Returns a <code>200 OK</code> status if the CartDiscount exists or a <code>404 Not Found</code> otherwise.</p>
* <p>Checks if a CartDiscount exists with the provided <code>key</code>. Returns a <code>200</code> status if the CartDiscount exists, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
Expand Down
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 a Cart exists for the provided <code>id</code>. Returns a <code>200 OK</code> status if the Cart exists or Not Found otherwise.</p>
* <p>Checks if a Cart exists for the provided <code>id</code>. Returns a <code>200</code> status if the Cart exists, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
Expand Down
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 a Cart exists for a Customer. Returns a <code>200 OK</code> status if the Cart exists or Not Found otherwise.</p>
* <p>Checks if a Cart exists for a Customer. Returns a <code>200</code> status if the Cart exists, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
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 Carts exist for the provided query predicate. Returns a <code>200 OK</code> status if any Carts match the query predicate, or Not Found otherwise.</p>
* <p>Checks if one or more Carts exist for the provided query predicate. Returns a <code>200</code> status if any Carts match the query predicate, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
Expand Down
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 a Cart exists with the provided <code>key</code>. Returns a <code>200 OK</code> status if the Cart exists or Not Found otherwise.</p>
* <p>Checks if a Cart exists with the provided <code>key</code>. Returns a <code>200</code> status if the Cart exists, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
Expand Down
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 a Category exists with the provided <code>id</code>. Returns a <code>200 OK</code> status if the Category exists or a <code>404 Not Found</code> otherwise.</p>
* <p>Checks if a Category exists with the provided <code>id</code>. Returns a <code>200</code> status if the Category exists, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
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 Categories exist for the provided query predicate. Returns a <code>200 OK</code> status if any Categories match the query predicate, or a <code>404 Not Found</code> otherwise.</p>
* <p>Checks if one or more Categories exist for the provided query predicate. Returns a <code>200</code> status if any Categories match the query predicate, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
Expand Down
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 a Category exists with the provided <code>key</code>. Returns a <code>200 OK</code> status if the Category exists or a <code>404 Not Found</code> otherwise.</p>
* <p>Checks if a Category exists with the provided <code>key</code>. Returns a <code>200</code> status if the Category exists, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
Expand Down
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 a Channel exists with the provided <code>id</code>. Returns a <code>200 OK</code> status if the Channel exists or a <code>404 Not Found</code> otherwise.</p>
* <p>Checks if a Channel exists with the provided <code>id</code>. Returns a <code>200</code> status if the Channel exists, or a <code>404</code> status otherwise.</p>
*
* <hr>
* <div class=code-example>
Expand Down
Loading