Skip to content

Commit

Permalink
fix: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
nitin-vavdiya committed May 23, 2024
1 parent bac5200 commit 697ff85
Showing 1 changed file with 16 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* ******************************************************************************
*/

package org.eclipse.tractusx.managedidentitywallets.dto;
package org.eclipse.tractusx.managedidentitywallets.dto;

import com.fasterxml.jackson.annotation.JsonProperty;
import jakarta.validation.constraints.NotBlank;
Expand All @@ -34,27 +34,28 @@
/**
* The type Issue framework credential request.
*/
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class IssueFrameworkCredentialRequest {

@NotBlank(message = "Please provide holder identifier")
@Size(min = 5, max = 255, message = "Please provide valid identifier")
private String holderIdentifier;
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class IssueFrameworkCredentialRequest {

@NotBlank(message = "Please provide holder identifier")
@Size(min = 5, max = 255, message = "Please provide valid identifier")
private String holderIdentifier;

@NotBlank(message = "Please provide type")
private String type;
private String type;

@NotBlank(message = "Please provide contract-template")
@JsonProperty("contract-template")
private String contractTemplate;
@JsonProperty("contract-template")
private String contractTemplate;

@NotBlank(message = "Please provide contract-template")
@JsonProperty("contract-version")
private String contractVersion;
@JsonProperty("contract-version")
private String contractVersion;
@JsonProperty("asJwt")
private boolean asJwt;

Expand Down

0 comments on commit 697ff85

Please sign in to comment.