Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR logic/resource-manager] Bugfix for swagger/sdk not matching the underlying service API #2734

Merged
merged 1 commit into from
Dec 7, 2018
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 @@ -29,14 +29,14 @@ public class EdifactValidationOverride {
/**
* The value indicating whether to validate EDI types.
*/
@JsonProperty(value = "validateEdiTypes", required = true)
private boolean validateEdiTypes;
@JsonProperty(value = "validateEDITypes", required = true)
private boolean validateEDITypes;

/**
* The value indicating whether to validate XSD types.
*/
@JsonProperty(value = "validateXsdTypes", required = true)
private boolean validateXsdTypes;
@JsonProperty(value = "validateXSDTypes", required = true)
private boolean validateXSDTypes;

/**
* The value indicating whether to allow leading and trailing spaces and
Expand Down Expand Up @@ -102,40 +102,40 @@ public EdifactValidationOverride withEnforceCharacterSet(boolean enforceCharacte
/**
* Get the value indicating whether to validate EDI types.
*
* @return the validateEdiTypes value
* @return the validateEDITypes value
*/
public boolean validateEdiTypes() {
return this.validateEdiTypes;
public boolean validateEDITypes() {
return this.validateEDITypes;
}

/**
* Set the value indicating whether to validate EDI types.
*
* @param validateEdiTypes the validateEdiTypes value to set
* @param validateEDITypes the validateEDITypes value to set
* @return the EdifactValidationOverride object itself.
*/
public EdifactValidationOverride withValidateEdiTypes(boolean validateEdiTypes) {
this.validateEdiTypes = validateEdiTypes;
public EdifactValidationOverride withValidateEDITypes(boolean validateEDITypes) {
this.validateEDITypes = validateEDITypes;
return this;
}

/**
* Get the value indicating whether to validate XSD types.
*
* @return the validateXsdTypes value
* @return the validateXSDTypes value
*/
public boolean validateXsdTypes() {
return this.validateXsdTypes;
public boolean validateXSDTypes() {
return this.validateXSDTypes;
}

/**
* Set the value indicating whether to validate XSD types.
*
* @param validateXsdTypes the validateXsdTypes value to set
* @param validateXSDTypes the validateXSDTypes value to set
* @return the EdifactValidationOverride object itself.
*/
public EdifactValidationOverride withValidateXsdTypes(boolean validateXsdTypes) {
this.validateXsdTypes = validateXsdTypes;
public EdifactValidationOverride withValidateXSDTypes(boolean validateXSDTypes) {
this.validateXSDTypes = validateXSDTypes;
return this;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ public class EdifactValidationSettings {
/**
* The value indicating whether to Whether to validate EDI types.
*/
@JsonProperty(value = "validateEdiTypes", required = true)
private boolean validateEdiTypes;
@JsonProperty(value = "validateEDITypes", required = true)
private boolean validateEDITypes;

/**
* The value indicating whether to Whether to validate XSD types.
*/
@JsonProperty(value = "validateXsdTypes", required = true)
private boolean validateXsdTypes;
@JsonProperty(value = "validateXSDTypes", required = true)
private boolean validateXSDTypes;

/**
* The value indicating whether to allow leading and trailing spaces and
Expand Down Expand Up @@ -183,40 +183,40 @@ public EdifactValidationSettings withCheckDuplicateTransactionSetControlNumber(b
/**
* Get the value indicating whether to Whether to validate EDI types.
*
* @return the validateEdiTypes value
* @return the validateEDITypes value
*/
public boolean validateEdiTypes() {
return this.validateEdiTypes;
public boolean validateEDITypes() {
return this.validateEDITypes;
}

/**
* Set the value indicating whether to Whether to validate EDI types.
*
* @param validateEdiTypes the validateEdiTypes value to set
* @param validateEDITypes the validateEDITypes value to set
* @return the EdifactValidationSettings object itself.
*/
public EdifactValidationSettings withValidateEdiTypes(boolean validateEdiTypes) {
this.validateEdiTypes = validateEdiTypes;
public EdifactValidationSettings withValidateEDITypes(boolean validateEDITypes) {
this.validateEDITypes = validateEDITypes;
return this;
}

/**
* Get the value indicating whether to Whether to validate XSD types.
*
* @return the validateXsdTypes value
* @return the validateXSDTypes value
*/
public boolean validateXsdTypes() {
return this.validateXsdTypes;
public boolean validateXSDTypes() {
return this.validateXSDTypes;
}

/**
* Set the value indicating whether to Whether to validate XSD types.
*
* @param validateXsdTypes the validateXsdTypes value to set
* @param validateXSDTypes the validateXSDTypes value to set
* @return the EdifactValidationSettings object itself.
*/
public EdifactValidationSettings withValidateXsdTypes(boolean validateXsdTypes) {
this.validateXsdTypes = validateXsdTypes;
public EdifactValidationSettings withValidateXSDTypes(boolean validateXSDTypes) {
this.validateXSDTypes = validateXSDTypes;
return this;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ public class X12ValidationOverride {
/**
* The value indicating whether to validate EDI types.
*/
@JsonProperty(value = "validateEdiTypes", required = true)
private boolean validateEdiTypes;
@JsonProperty(value = "validateEDITypes", required = true)
private boolean validateEDITypes;

/**
* The value indicating whether to validate XSD types.
*/
@JsonProperty(value = "validateXsdTypes", required = true)
private boolean validateXsdTypes;
@JsonProperty(value = "validateXSDTypes", required = true)
private boolean validateXSDTypes;

/**
* The value indicating whether to allow leading and trailing spaces and
Expand Down Expand Up @@ -82,40 +82,40 @@ public X12ValidationOverride withMessageId(String messageId) {
/**
* Get the value indicating whether to validate EDI types.
*
* @return the validateEdiTypes value
* @return the validateEDITypes value
*/
public boolean validateEdiTypes() {
return this.validateEdiTypes;
public boolean validateEDITypes() {
return this.validateEDITypes;
}

/**
* Set the value indicating whether to validate EDI types.
*
* @param validateEdiTypes the validateEdiTypes value to set
* @param validateEDITypes the validateEDITypes value to set
* @return the X12ValidationOverride object itself.
*/
public X12ValidationOverride withValidateEdiTypes(boolean validateEdiTypes) {
this.validateEdiTypes = validateEdiTypes;
public X12ValidationOverride withValidateEDITypes(boolean validateEDITypes) {
this.validateEDITypes = validateEDITypes;
return this;
}

/**
* Get the value indicating whether to validate XSD types.
*
* @return the validateXsdTypes value
* @return the validateXSDTypes value
*/
public boolean validateXsdTypes() {
return this.validateXsdTypes;
public boolean validateXSDTypes() {
return this.validateXSDTypes;
}

/**
* Set the value indicating whether to validate XSD types.
*
* @param validateXsdTypes the validateXsdTypes value to set
* @param validateXSDTypes the validateXSDTypes value to set
* @return the X12ValidationOverride object itself.
*/
public X12ValidationOverride withValidateXsdTypes(boolean validateXsdTypes) {
this.validateXsdTypes = validateXsdTypes;
public X12ValidationOverride withValidateXSDTypes(boolean validateXSDTypes) {
this.validateXSDTypes = validateXSDTypes;
return this;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ public class X12ValidationSettings {
/**
* The value indicating whether to Whether to validate EDI types.
*/
@JsonProperty(value = "validateEdiTypes", required = true)
private boolean validateEdiTypes;
@JsonProperty(value = "validateEDITypes", required = true)
private boolean validateEDITypes;

/**
* The value indicating whether to Whether to validate XSD types.
*/
@JsonProperty(value = "validateXsdTypes", required = true)
private boolean validateXsdTypes;
@JsonProperty(value = "validateXSDTypes", required = true)
private boolean validateXSDTypes;

/**
* The value indicating whether to allow leading and trailing spaces and
Expand Down Expand Up @@ -183,40 +183,40 @@ public X12ValidationSettings withCheckDuplicateTransactionSetControlNumber(boole
/**
* Get the value indicating whether to Whether to validate EDI types.
*
* @return the validateEdiTypes value
* @return the validateEDITypes value
*/
public boolean validateEdiTypes() {
return this.validateEdiTypes;
public boolean validateEDITypes() {
return this.validateEDITypes;
}

/**
* Set the value indicating whether to Whether to validate EDI types.
*
* @param validateEdiTypes the validateEdiTypes value to set
* @param validateEDITypes the validateEDITypes value to set
* @return the X12ValidationSettings object itself.
*/
public X12ValidationSettings withValidateEdiTypes(boolean validateEdiTypes) {
this.validateEdiTypes = validateEdiTypes;
public X12ValidationSettings withValidateEDITypes(boolean validateEDITypes) {
this.validateEDITypes = validateEDITypes;
return this;
}

/**
* Get the value indicating whether to Whether to validate XSD types.
*
* @return the validateXsdTypes value
* @return the validateXSDTypes value
*/
public boolean validateXsdTypes() {
return this.validateXsdTypes;
public boolean validateXSDTypes() {
return this.validateXSDTypes;
}

/**
* Set the value indicating whether to Whether to validate XSD types.
*
* @param validateXsdTypes the validateXsdTypes value to set
* @param validateXSDTypes the validateXSDTypes value to set
* @return the X12ValidationSettings object itself.
*/
public X12ValidationSettings withValidateXsdTypes(boolean validateXsdTypes) {
this.validateXsdTypes = validateXsdTypes;
public X12ValidationSettings withValidateXSDTypes(boolean validateXSDTypes) {
this.validateXSDTypes = validateXSDTypes;
return this;
}

Expand Down