|
1 | 1 | package com.appirio.tech.core.service.identity.representation; |
2 | 2 |
|
3 | | -import com.fasterxml.jackson.annotation.JsonProperty; |
4 | | - |
5 | 3 | public class DiceStatusRequest { |
6 | 4 |
|
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; |
12 | 6 | 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; |
35 | 9 |
|
36 | | - public String getPresentationExchangeId() { |
37 | | - return presentationExchangeId; |
| 10 | + public String getEvent() { |
| 11 | + return event; |
38 | 12 | } |
39 | 13 |
|
40 | | - public void setPresentationExchangeId(String presentationExchangeId) { |
41 | | - this.presentationExchangeId = presentationExchangeId; |
| 14 | + public void setEvent(String event) { |
| 15 | + this.event = event; |
42 | 16 | } |
43 | 17 |
|
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; |
58 | 20 | } |
59 | 21 |
|
60 | | - public String getAction() { |
61 | | - return action; |
| 22 | + public void setConnectionId(String connectionId) { |
| 23 | + this.connectionId = connectionId; |
62 | 24 | } |
63 | 25 |
|
64 | | - public void setAction(String action) { |
65 | | - this.action = action; |
| 26 | + public String getEmailId() { |
| 27 | + return emailId; |
66 | 28 | } |
67 | 29 |
|
68 | | - public String getName() { |
69 | | - return name; |
| 30 | + public void setEmailId(String emailId) { |
| 31 | + this.emailId = emailId; |
70 | 32 | } |
71 | 33 |
|
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; |
78 | 36 | } |
79 | 37 |
|
80 | | - public void setEmail(String email) { |
81 | | - this.email = email; |
| 38 | + public void setShortUrl(String shortUrl) { |
| 39 | + this.shortUrl = shortUrl; |
82 | 40 | } |
83 | 41 | } |
0 commit comments