Skip to content

Commit

Permalink
Generated from 47fe478b6b258e1f94cf38c8e2226d0ce3380e87
Browse files Browse the repository at this point in the history
Start enum values with uppercase like it is actually defined in RP
  • Loading branch information
SDK Automation committed Jul 15, 2020
1 parent a0ecc89 commit 64e5492
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
* Defines values for ParamIndicator.
*/
public final class ParamIndicator extends ExpandableStringEnum<ParamIndicator> {
/** Static value expires for ParamIndicator. */
public static final ParamIndicator EXPIRES = fromString("expires");
/** Static value Expires for ParamIndicator. */
public static final ParamIndicator EXPIRES = fromString("Expires");

/** Static value keyId for ParamIndicator. */
public static final ParamIndicator KEY_ID = fromString("keyId");
/** Static value KeyId for ParamIndicator. */
public static final ParamIndicator KEY_ID = fromString("KeyId");

/** Static value signature for ParamIndicator. */
public static final ParamIndicator SIGNATURE = fromString("signature");
/** Static value Signature for ParamIndicator. */
public static final ParamIndicator SIGNATURE = fromString("Signature");

/**
* Creates or finds a ParamIndicator from its string representation.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
public class UrlSigningParamIdentifier {
/**
* Indicates the purpose of the parameter. Possible values include:
* 'expires', 'keyId', 'signature'.
* 'Expires', 'KeyId', 'Signature'.
*/
@JsonProperty(value = "paramIndicator", required = true)
private ParamIndicator paramIndicator;
Expand All @@ -28,7 +28,7 @@ public class UrlSigningParamIdentifier {
private String paramName;

/**
* Get indicates the purpose of the parameter. Possible values include: 'expires', 'keyId', 'signature'.
* Get indicates the purpose of the parameter. Possible values include: 'Expires', 'KeyId', 'Signature'.
*
* @return the paramIndicator value
*/
Expand All @@ -37,7 +37,7 @@ public ParamIndicator paramIndicator() {
}

/**
* Set indicates the purpose of the parameter. Possible values include: 'expires', 'keyId', 'signature'.
* Set indicates the purpose of the parameter. Possible values include: 'Expires', 'KeyId', 'Signature'.
*
* @param paramIndicator the paramIndicator value to set
* @return the UrlSigningParamIdentifier object itself.
Expand Down

0 comments on commit 64e5492

Please sign in to comment.