From 13c46f877d0540f22b16f80facd7e60de74490fa Mon Sep 17 00:00:00 2001
From: Leonardo Vannucci <leonardo.vannucci@grupposistematica.it>
Date: Mon, 17 Sep 2018 16:10:40 +0200
Subject: [PATCH] Avvio istanze URP
---
dg1cloud-core/src/main/java/it/digione/dg1cloud/ws/client/isd/IsdProperties.java | 62 ++++++++++++++++++++++++++++++
1 files changed, 61 insertions(+), 1 deletions(-)
diff --git a/dg1cloud-core/src/main/java/it/digione/dg1cloud/ws/client/isd/IsdProperties.java b/dg1cloud-core/src/main/java/it/digione/dg1cloud/ws/client/isd/IsdProperties.java
index 689105e..2dfbf52 100644
--- a/dg1cloud-core/src/main/java/it/digione/dg1cloud/ws/client/isd/IsdProperties.java
+++ b/dg1cloud-core/src/main/java/it/digione/dg1cloud/ws/client/isd/IsdProperties.java
@@ -1,5 +1,7 @@
package it.digione.dg1cloud.ws.client.isd;
+import java.util.List;
+
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
@@ -11,6 +13,7 @@
private Urp urp;
private String username;
private String password;
+ private String notificationFrom;
public Endpoint getEndpoint() {
return endpoint;
@@ -36,11 +39,18 @@
public void setPassword(String password) {
this.password = password;
}
+ public String getNotificationFrom() {
+ return notificationFrom;
+ }
+ public void setNotificationFrom(String notificationFrom) {
+ this.notificationFrom = notificationFrom;
+ }
@Override
public String toString() {
return "IsdProperties{" +
"username='" + username + "'," +
"endpoint=" + endpoint + "," +
+ "notificationFrom=" + notificationFrom + "," +
"urp=" + urp +
"}";
}
@@ -70,6 +80,9 @@
private String storyboad;
private String metaviewname;
private String direction;
+ private String transition;
+ private List<Contact> contacts;
+
public String getPuid() {
return puid;
}
@@ -100,6 +113,18 @@
public void setDirection(String direction) {
this.direction = direction;
}
+ public String getTransition() {
+ return transition;
+ }
+ public void setTransition(String transition) {
+ this.transition = transition;
+ }
+ public List<Contact> getContacts() {
+ return contacts;
+ }
+ public void setContacts(List<Contact> contacts) {
+ this.contacts = contacts;
+ }
@Override
public String toString() {
return "Urp{" +
@@ -107,8 +132,43 @@
"mbox='" + mbox + "'," +
"storyboad='" + storyboad + "'," +
"metaviewname='" + metaviewname + "'," +
- "direction='" + direction + "'" +
+ "direction='" + direction + "'," +
+ "transition='" + transition + "'," +
+ "contacts=" + contacts +
"}";
}
+
+ public static class Contact {
+ private String type;
+ private String referenceType;
+ private String code;
+
+ public String getType() {
+ return type;
+ }
+ public void setType(String type) {
+ this.type = type;
+ }
+ public String getReferenceType() {
+ return referenceType;
+ }
+ public void setReferenceType(String referenceType) {
+ this.referenceType = referenceType;
+ }
+ public String getCode() {
+ return code;
+ }
+ public void setCode(String code) {
+ this.code = code;
+ }
+ @Override
+ public String toString() {
+ return "Contacts{" +
+ "type='" + type + "'," +
+ "referenceType='" + referenceType + "'," +
+ "code='" + code + "'" +
+ "}";
+ }
+ }
}
}
--
Gitblit v1.6.2