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 @@ -34,7 +34,7 @@
public interface ApproverConjunctionDraft extends io.vrap.rmf.base.client.Draft<ApproverConjunctionDraft> {

/**
* <p>All of the nested disjunctions must be approved in order for the conjunction to be considered approved. The total count of approvers across the nested disjunctions must not exceed 10.</p>
* <p>All of the nested disjunctions must be approved in order for the conjunction to be considered approved.</p>
* @return and
*/
@NotNull
Expand All @@ -43,15 +43,15 @@ public interface ApproverConjunctionDraft extends io.vrap.rmf.base.client.Draft<
public List<ApproverDisjunctionDraft> getAnd();

/**
* <p>All of the nested disjunctions must be approved in order for the conjunction to be considered approved. The total count of approvers across the nested disjunctions must not exceed 10.</p>
* <p>All of the nested disjunctions must be approved in order for the conjunction to be considered approved.</p>
* @param and values to be set
*/

@JsonIgnore
public void setAnd(final ApproverDisjunctionDraft... and);

/**
* <p>All of the nested disjunctions must be approved in order for the conjunction to be considered approved. The total count of approvers across the nested disjunctions must not exceed 10.</p>
* <p>All of the nested disjunctions must be approved in order for the conjunction to be considered approved.</p>
* @param and values to be set
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class ApproverConjunctionDraftBuilder implements Builder<ApproverConjunct
private java.util.List<com.commercetools.api.models.approval_rule.ApproverDisjunctionDraft> and;

/**
* <p>All of the nested disjunctions must be approved in order for the conjunction to be considered approved. The total count of approvers across the nested disjunctions must not exceed 10.</p>
* <p>All of the nested disjunctions must be approved in order for the conjunction to be considered approved.</p>
* @param and value to be set
* @return Builder
*/
Expand All @@ -37,7 +37,7 @@ public ApproverConjunctionDraftBuilder and(
}

/**
* <p>All of the nested disjunctions must be approved in order for the conjunction to be considered approved. The total count of approvers across the nested disjunctions must not exceed 10.</p>
* <p>All of the nested disjunctions must be approved in order for the conjunction to be considered approved.</p>
* @param and value to be set
* @return Builder
*/
Expand All @@ -49,7 +49,7 @@ public ApproverConjunctionDraftBuilder and(
}

/**
* <p>All of the nested disjunctions must be approved in order for the conjunction to be considered approved. The total count of approvers across the nested disjunctions must not exceed 10.</p>
* <p>All of the nested disjunctions must be approved in order for the conjunction to be considered approved.</p>
* @param and value to be set
* @return Builder
*/
Expand All @@ -64,7 +64,7 @@ public ApproverConjunctionDraftBuilder plusAnd(
}

/**
* <p>All of the nested disjunctions must be approved in order for the conjunction to be considered approved. The total count of approvers across the nested disjunctions must not exceed 10.</p>
* <p>All of the nested disjunctions must be approved in order for the conjunction to be considered approved.</p>
* @param builder function to build the and value
* @return Builder
*/
Expand All @@ -80,7 +80,7 @@ public ApproverConjunctionDraftBuilder plusAnd(
}

/**
* <p>All of the nested disjunctions must be approved in order for the conjunction to be considered approved. The total count of approvers across the nested disjunctions must not exceed 10.</p>
* <p>All of the nested disjunctions must be approved in order for the conjunction to be considered approved.</p>
* @param builder function to build the and value
* @return Builder
*/
Expand All @@ -94,7 +94,7 @@ public ApproverConjunctionDraftBuilder withAnd(
}

/**
* <p>All of the nested disjunctions must be approved in order for the conjunction to be considered approved. The total count of approvers across the nested disjunctions must not exceed 10.</p>
* <p>All of the nested disjunctions must be approved in order for the conjunction to be considered approved.</p>
* @param builder function to build the and value
* @return Builder
*/
Expand All @@ -105,7 +105,7 @@ public ApproverConjunctionDraftBuilder addAnd(
}

/**
* <p>All of the nested disjunctions must be approved in order for the conjunction to be considered approved. The total count of approvers across the nested disjunctions must not exceed 10.</p>
* <p>All of the nested disjunctions must be approved in order for the conjunction to be considered approved.</p>
* @param builder function to build the and value
* @return Builder
*/
Expand All @@ -116,7 +116,7 @@ public ApproverConjunctionDraftBuilder setAnd(
}

/**
* <p>All of the nested disjunctions must be approved in order for the conjunction to be considered approved. The total count of approvers across the nested disjunctions must not exceed 10.</p>
* <p>All of the nested disjunctions must be approved in order for the conjunction to be considered approved.</p>
* @return and
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public ApproverConjunctionDraftImpl() {
}

/**
* <p>All of the nested disjunctions must be approved in order for the conjunction to be considered approved. The total count of approvers across the nested disjunctions must not exceed 10.</p>
* <p>All of the nested disjunctions must be approved in order for the conjunction to be considered approved.</p>
*/

public java.util.List<com.commercetools.api.models.approval_rule.ApproverDisjunctionDraft> getAnd() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public interface BusinessUnitSetAssociatesAction extends BusinessUnitUpdateActio
String SET_ASSOCIATES = "setAssociates";

/**
* <p>The new list of Associates. If not provided, any existing list is removed.</p>
* <p>The new list of Associates. If empty, existing values will be removed.</p>
* @return associates
*/
@NotNull
Expand All @@ -48,15 +48,15 @@ public interface BusinessUnitSetAssociatesAction extends BusinessUnitUpdateActio
public List<AssociateDraft> getAssociates();

/**
* <p>The new list of Associates. If not provided, any existing list is removed.</p>
* <p>The new list of Associates. If empty, existing values will be removed.</p>
* @param associates values to be set
*/

@JsonIgnore
public void setAssociates(final AssociateDraft... associates);

/**
* <p>The new list of Associates. If not provided, any existing list is removed.</p>
* <p>The new list of Associates. If empty, existing values will be removed.</p>
* @param associates values to be set
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class BusinessUnitSetAssociatesActionBuilder implements Builder<BusinessU
private java.util.List<com.commercetools.api.models.business_unit.AssociateDraft> associates;

/**
* <p>The new list of Associates. If not provided, any existing list is removed.</p>
* <p>The new list of Associates. If empty, existing values will be removed.</p>
* @param associates value to be set
* @return Builder
*/
Expand All @@ -37,7 +37,7 @@ public BusinessUnitSetAssociatesActionBuilder associates(
}

/**
* <p>The new list of Associates. If not provided, any existing list is removed.</p>
* <p>The new list of Associates. If empty, existing values will be removed.</p>
* @param associates value to be set
* @return Builder
*/
Expand All @@ -49,7 +49,7 @@ public BusinessUnitSetAssociatesActionBuilder associates(
}

/**
* <p>The new list of Associates. If not provided, any existing list is removed.</p>
* <p>The new list of Associates. If empty, existing values will be removed.</p>
* @param associates value to be set
* @return Builder
*/
Expand All @@ -64,7 +64,7 @@ public BusinessUnitSetAssociatesActionBuilder plusAssociates(
}

/**
* <p>The new list of Associates. If not provided, any existing list is removed.</p>
* <p>The new list of Associates. If empty, existing values will be removed.</p>
* @param builder function to build the associates value
* @return Builder
*/
Expand All @@ -80,7 +80,7 @@ public BusinessUnitSetAssociatesActionBuilder plusAssociates(
}

/**
* <p>The new list of Associates. If not provided, any existing list is removed.</p>
* <p>The new list of Associates. If empty, existing values will be removed.</p>
* @param builder function to build the associates value
* @return Builder
*/
Expand All @@ -94,7 +94,7 @@ public BusinessUnitSetAssociatesActionBuilder withAssociates(
}

/**
* <p>The new list of Associates. If not provided, any existing list is removed.</p>
* <p>The new list of Associates. If empty, existing values will be removed.</p>
* @param builder function to build the associates value
* @return Builder
*/
Expand All @@ -105,7 +105,7 @@ public BusinessUnitSetAssociatesActionBuilder addAssociates(
}

/**
* <p>The new list of Associates. If not provided, any existing list is removed.</p>
* <p>The new list of Associates. If empty, existing values will be removed.</p>
* @param builder function to build the associates value
* @return Builder
*/
Expand All @@ -116,7 +116,7 @@ public BusinessUnitSetAssociatesActionBuilder setAssociates(
}

/**
* <p>The new list of Associates. If not provided, any existing list is removed.</p>
* <p>The new list of Associates. If empty, existing values will be removed.</p>
* @return associates
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public String getAction() {
}

/**
* <p>The new list of Associates. If not provided, any existing list is removed.</p>
* <p>The new list of Associates. If empty, existing values will be removed.</p>
*/

public java.util.List<com.commercetools.api.models.business_unit.AssociateDraft> getAssociates() {
Expand Down
1 change: 1 addition & 0 deletions references.txt
Original file line number Diff line number Diff line change
Expand Up @@ -312,3 +312,4 @@ c77ec902f368c2c31505fcb65a835ce148350077
903922e6a2dc0ff9283757645395f5119f61be0e
4d99474bc43b90f392085d18a75bb826c4cb25e0
e985f4b7aa55610705ee49bd3eb645c2fd03eb6c
3bde1efd0d5dbff77065d355e9d00e8a0e8f466a
Loading