| .. | .. |
|---|
| 1 | 1 | package it.digione.dg1cloud.ws.client.isd; |
|---|
| 2 | 2 | |
|---|
| 3 | +import java.util.List; |
|---|
| 4 | + |
|---|
| 3 | 5 | import org.springframework.boot.context.properties.ConfigurationProperties; |
|---|
| 4 | 6 | import org.springframework.stereotype.Component; |
|---|
| 5 | 7 | |
|---|
| .. | .. |
|---|
| 11 | 13 | private Urp urp; |
|---|
| 12 | 14 | private String username; |
|---|
| 13 | 15 | private String password; |
|---|
| 16 | + private String notificationFrom; |
|---|
| 14 | 17 | |
|---|
| 15 | 18 | public Endpoint getEndpoint() { |
|---|
| 16 | 19 | return endpoint; |
|---|
| .. | .. |
|---|
| 36 | 39 | public void setPassword(String password) { |
|---|
| 37 | 40 | this.password = password; |
|---|
| 38 | 41 | } |
|---|
| 42 | + public String getNotificationFrom() { |
|---|
| 43 | + return notificationFrom; |
|---|
| 44 | + } |
|---|
| 45 | + public void setNotificationFrom(String notificationFrom) { |
|---|
| 46 | + this.notificationFrom = notificationFrom; |
|---|
| 47 | + } |
|---|
| 39 | 48 | @Override |
|---|
| 40 | 49 | public String toString() { |
|---|
| 41 | 50 | return "IsdProperties{" + |
|---|
| 42 | 51 | "username='" + username + "'," + |
|---|
| 43 | 52 | "endpoint=" + endpoint + "," + |
|---|
| 53 | + "notificationFrom=" + notificationFrom + "," + |
|---|
| 44 | 54 | "urp=" + urp + |
|---|
| 45 | 55 | "}"; |
|---|
| 46 | 56 | } |
|---|
| .. | .. |
|---|
| 70 | 80 | private String storyboad; |
|---|
| 71 | 81 | private String metaviewname; |
|---|
| 72 | 82 | private String direction; |
|---|
| 83 | + private String transition; |
|---|
| 84 | + private List<Contact> contacts; |
|---|
| 85 | + |
|---|
| 73 | 86 | public String getPuid() { |
|---|
| 74 | 87 | return puid; |
|---|
| 75 | 88 | } |
|---|
| .. | .. |
|---|
| 100 | 113 | public void setDirection(String direction) { |
|---|
| 101 | 114 | this.direction = direction; |
|---|
| 102 | 115 | } |
|---|
| 116 | + public String getTransition() { |
|---|
| 117 | + return transition; |
|---|
| 118 | + } |
|---|
| 119 | + public void setTransition(String transition) { |
|---|
| 120 | + this.transition = transition; |
|---|
| 121 | + } |
|---|
| 122 | + public List<Contact> getContacts() { |
|---|
| 123 | + return contacts; |
|---|
| 124 | + } |
|---|
| 125 | + public void setContacts(List<Contact> contacts) { |
|---|
| 126 | + this.contacts = contacts; |
|---|
| 127 | + } |
|---|
| 103 | 128 | @Override |
|---|
| 104 | 129 | public String toString() { |
|---|
| 105 | 130 | return "Urp{" + |
|---|
| .. | .. |
|---|
| 107 | 132 | "mbox='" + mbox + "'," + |
|---|
| 108 | 133 | "storyboad='" + storyboad + "'," + |
|---|
| 109 | 134 | "metaviewname='" + metaviewname + "'," + |
|---|
| 110 | | - "direction='" + direction + "'" + |
|---|
| 135 | + "direction='" + direction + "'," + |
|---|
| 136 | + "transition='" + transition + "'," + |
|---|
| 137 | + "contacts=" + contacts + |
|---|
| 111 | 138 | "}"; |
|---|
| 112 | 139 | } |
|---|
| 140 | + |
|---|
| 141 | + public static class Contact { |
|---|
| 142 | + private String type; |
|---|
| 143 | + private String referenceType; |
|---|
| 144 | + private String code; |
|---|
| 145 | + |
|---|
| 146 | + public String getType() { |
|---|
| 147 | + return type; |
|---|
| 148 | + } |
|---|
| 149 | + public void setType(String type) { |
|---|
| 150 | + this.type = type; |
|---|
| 151 | + } |
|---|
| 152 | + public String getReferenceType() { |
|---|
| 153 | + return referenceType; |
|---|
| 154 | + } |
|---|
| 155 | + public void setReferenceType(String referenceType) { |
|---|
| 156 | + this.referenceType = referenceType; |
|---|
| 157 | + } |
|---|
| 158 | + public String getCode() { |
|---|
| 159 | + return code; |
|---|
| 160 | + } |
|---|
| 161 | + public void setCode(String code) { |
|---|
| 162 | + this.code = code; |
|---|
| 163 | + } |
|---|
| 164 | + @Override |
|---|
| 165 | + public String toString() { |
|---|
| 166 | + return "Contacts{" + |
|---|
| 167 | + "type='" + type + "'," + |
|---|
| 168 | + "referenceType='" + referenceType + "'," + |
|---|
| 169 | + "code='" + code + "'" + |
|---|
| 170 | + "}"; |
|---|
| 171 | + } |
|---|
| 172 | + } |
|---|
| 113 | 173 | } |
|---|
| 114 | 174 | } |
|---|