868d6abb7 2025 -> 2026
63081666f Source file headers: 2024-> 2025.
b6092df09 Copyright 2023 -> 2024
e3b79281f WIP Sipgate.
868d6abb7
2025 -> 2026868d6abb75cd191a892911ac8e45058932cf9074
diff --git a/projectforge-business/src/main/kotlin/org/projectforge/business/sipgate/SipgateIoLogsResponse.kt b/projectforge-business/src/main/kotlin/org/projectforge/business/sipgate/SipgateIoLogsResponse.kt
index c6546d7a1..79e2c0bd6 100644
--- a/projectforge-business/src/main/kotlin/org/projectforge/business/sipgate/SipgateIoLogsResponse.kt
+++ b/projectforge-business/src/main/kotlin/org/projectforge/business/sipgate/SipgateIoLogsResponse.kt
@@ -3,7 +3,7 @@
// Project ProjectForge Community Edition
// www.projectforge.org
//
-// Copyright (C) 2001-2025 Micromata GmbH, Germany (www.micromata.com)
+// Copyright (C) 2001-2026 Micromata GmbH, Germany (www.micromata.com)
//
// ProjectForge is dual-licensed.
//
63081666f
Source file headers: 2024-> 2025.63081666f620fb87315f01b817e560e0b2f6a33a
diff --git a/projectforge-business/src/main/kotlin/org/projectforge/business/sipgate/SipgateIoLogsResponse.kt b/projectforge-business/src/main/kotlin/org/projectforge/business/sipgate/SipgateIoLogsResponse.kt
index 5780e7852..c6546d7a1 100644
--- a/projectforge-business/src/main/kotlin/org/projectforge/business/sipgate/SipgateIoLogsResponse.kt
+++ b/projectforge-business/src/main/kotlin/org/projectforge/business/sipgate/SipgateIoLogsResponse.kt
@@ -3,7 +3,7 @@
// Project ProjectForge Community Edition
// www.projectforge.org
//
-// Copyright (C) 2001-2024 Micromata GmbH, Germany (www.micromata.com)
+// Copyright (C) 2001-2025 Micromata GmbH, Germany (www.micromata.com)
//
// ProjectForge is dual-licensed.
//
b6092df09
Copyright 2023 -> 2024b6092df0927c4a3b161e888445f31dcab57493f2
diff --git a/projectforge-business/src/main/kotlin/org/projectforge/business/sipgate/SipgateIoLogsResponse.kt b/projectforge-business/src/main/kotlin/org/projectforge/business/sipgate/SipgateIoLogsResponse.kt
index c873cf2be..5780e7852 100644
--- a/projectforge-business/src/main/kotlin/org/projectforge/business/sipgate/SipgateIoLogsResponse.kt
+++ b/projectforge-business/src/main/kotlin/org/projectforge/business/sipgate/SipgateIoLogsResponse.kt
@@ -3,7 +3,7 @@
// Project ProjectForge Community Edition
// www.projectforge.org
//
-// Copyright (C) 2001-2023 Micromata GmbH, Germany (www.micromata.com)
+// Copyright (C) 2001-2024 Micromata GmbH, Germany (www.micromata.com)
//
// ProjectForge is dual-licensed.
//
e3b79281f
WIP Sipgate.e3b79281f35fd3757217d0645248d4ff43bee249
diff --git a/projectforge-business/src/main/kotlin/org/projectforge/business/sipgate/SipgateIoLogsResponse.kt b/projectforge-business/src/main/kotlin/org/projectforge/business/sipgate/SipgateIoLogsResponse.kt
new file mode 100644
index 000000000..c873cf2be
--- /dev/null
+++ b/projectforge-business/src/main/kotlin/org/projectforge/business/sipgate/SipgateIoLogsResponse.kt
@@ -0,0 +1,42 @@
+/////////////////////////////////////////////////////////////////////////////
+//
+// Project ProjectForge Community Edition
+// www.projectforge.org
+//
+// Copyright (C) 2001-2023 Micromata GmbH, Germany (www.micromata.com)
+//
+// ProjectForge is dual-licensed.
+//
+// This community edition is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License as published
+// by the Free Software Foundation; version 3 of the License.
+//
+// This community edition is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
+// Public License for more details.
+//
+// You should have received a copy of the GNU General Public License along
+// with this program; if not, see http://www.gnu.org/licenses/.
+//
+/////////////////////////////////////////////////////////////////////////////
+
+package org.projectforge.business.sipgate
+
+import org.projectforge.framework.json.JsonUtils
+
+/**
+ * @author K. Reinhard (k.reinhard@micromata.de)
+ */
+class SipgateIoLogsResponse(
+ var created: String? = null,
+ var url: String? = null,
+ var request: String? = null,
+ var response: String? = null,
+ var xmlError: String? = null,
+ var status: String? = null,
+) {
+ override fun toString(): String {
+ return JsonUtils.toJson(this, true)
+ }
+}