Skip to content
This repository was archived by the owner on Dec 9, 2025. It is now read-only.

Commit 27da0db

Browse files
committed
Seeing if this helps with DiceID callback
1 parent 63eaaed commit 27da0db

File tree

1 file changed

+19
-61
lines changed

1 file changed

+19
-61
lines changed
Lines changed: 19 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -1,83 +1,41 @@
11
package com.appirio.tech.core.service.identity.representation;
22

3-
import com.fasterxml.jackson.annotation.JsonProperty;
4-
53
public class DiceStatusRequest {
64

7-
private String type;
8-
private String action;
9-
private String name;
10-
private String email;
11-
@JsonProperty(value = "connection_id")
5+
private String event;
126
private String connectionId;
13-
@JsonProperty(value = "credential_exchange_id")
14-
private String credentialExchangeId;
15-
@JsonProperty(value = "presentation_exchange_id")
16-
private String presentationExchangeId;
17-
@JsonProperty(value = "schema_id")
18-
private String schemaId;
19-
20-
public String getConnectionId() {
21-
return connectionId;
22-
}
23-
24-
public void setConnectionId(String connectionId) {
25-
this.connectionId = connectionId;
26-
}
27-
28-
public String getCredentialExchangeId() {
29-
return credentialExchangeId;
30-
}
31-
32-
public void setCredentialExchangeId(String credentialExchangeId) {
33-
this.credentialExchangeId = credentialExchangeId;
34-
}
7+
private String emailId;
8+
private String shortUrl;
359

36-
public String getPresentationExchangeId() {
37-
return presentationExchangeId;
10+
public String getEvent() {
11+
return event;
3812
}
3913

40-
public void setPresentationExchangeId(String presentationExchangeId) {
41-
this.presentationExchangeId = presentationExchangeId;
14+
public void setEvent(String event) {
15+
this.event = event;
4216
}
4317

44-
public String getSchemaId() {
45-
return schemaId;
46-
}
47-
48-
public void setSchemaId(String schemaId) {
49-
this.schemaId = schemaId;
50-
}
51-
52-
public String getType() {
53-
return type;
54-
}
55-
56-
public void setType(String type) {
57-
this.type = type;
18+
public String getConnectionId() {
19+
return connectionId;
5820
}
5921

60-
public String getAction() {
61-
return action;
22+
public void setConnectionId(String connectionId) {
23+
this.connectionId = connectionId;
6224
}
6325

64-
public void setAction(String action) {
65-
this.action = action;
26+
public String getEmailId() {
27+
return emailId;
6628
}
6729

68-
public String getName() {
69-
return name;
30+
public void setEmailId(String emailId) {
31+
this.emailId = emailId;
7032
}
7133

72-
public void setName(String name) {
73-
this.name = name;
74-
}
75-
76-
public String getEmail() {
77-
return email;
34+
public String getShortUrl() {
35+
return shortUrl;
7836
}
7937

80-
public void setEmail(String email) {
81-
this.email = email;
38+
public void setShortUrl(String shortUrl) {
39+
this.shortUrl = shortUrl;
8240
}
8341
}

0 commit comments

Comments
 (0)