Skip to content

Commit fe91721

Browse files
author
Robert Winkler
committed
Updated package names to org.eclipse.thingweb
1 parent 57698f3 commit fe91721

File tree

137 files changed

+529
-529
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

137 files changed

+529
-529
lines changed

.github/workflows/gradle.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ jobs:
3232

3333
steps:
3434
- uses: actions/checkout@v4
35-
- name: Set up JDK 17
35+
- name: Set up JDK 21
3636
uses: actions/setup-java@v4
3737
with:
38-
java-version: '17'
38+
java-version: '21'
3939
distribution: 'temurin'
4040
- name: Setup Gradle
4141
uses: gradle/actions/setup-gradle@0d30c9111cf47a838eb69c06d13f3f51ab2ed76f # v3.1.0

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ subprojects {
1111
apply(plugin = "maven-publish")
1212
apply(plugin = "org.cadixdev.licenser")
1313

14-
group = "ai.ancf.lmos"
14+
group = "org.eclipse.thingweb"
1515
version = "0.1.3-SNAPSHOT"
1616

1717
license {

kotlin-wot-binding-http/src/main/kotlin/http/HttpClientConfig.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
package http
88

9-
import ai.ancf.lmos.wot.security.SecurityScheme
9+
import org.eclipse.thingweb.security.SecurityScheme
1010

1111
data class HttpClientConfig(
1212
val port: Int?,

kotlin-wot-binding-http/src/main/kotlin/http/HttpProtocolClient.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
* SPDX-License-Identifier: Apache-2.0
55
*/
66

7-
package ai.ancf.lmos.wot.binding.http
7+
package org.eclipse.thingweb.binding.http
88

9-
import ai.ancf.lmos.wot.content.Content
10-
import ai.ancf.lmos.wot.credentials.CredentialsProvider
11-
import ai.ancf.lmos.wot.thing.schema.WoTForm
9+
import org.eclipse.thingweb.content.Content
10+
import org.eclipse.thingweb.credentials.CredentialsProvider
11+
import org.eclipse.thingweb.thing.schema.WoTForm
1212
import ai.anfc.lmos.wot.binding.ProtocolClient
1313
import ai.anfc.lmos.wot.binding.ProtocolClientException
1414
import io.ktor.client.*

kotlin-wot-binding-http/src/main/kotlin/http/HttpProtocolClientFactory.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* SPDX-License-Identifier: Apache-2.0
55
*/
66

7-
package ai.ancf.lmos.wot.binding.http
7+
package org.eclipse.thingweb.binding.http
88

99
import ai.anfc.lmos.wot.binding.ProtocolClient
1010
import ai.anfc.lmos.wot.binding.ProtocolClientFactory

kotlin-wot-binding-http/src/main/kotlin/http/HttpProtocolServer.kt

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@
44
* SPDX-License-Identifier: Apache-2.0
55
*/
66

7-
package ai.ancf.lmos.wot.binding.http
7+
package org.eclipse.thingweb.binding.http
88

9-
import ai.ancf.lmos.wot.JsonMapper
10-
import ai.ancf.lmos.wot.Servient
11-
import ai.ancf.lmos.wot.content.Content
12-
import ai.ancf.lmos.wot.content.ContentCodecException
13-
import ai.ancf.lmos.wot.content.ContentManager
14-
import ai.ancf.lmos.wot.thing.ExposedThing
15-
import ai.ancf.lmos.wot.thing.ThingDescription
16-
import ai.ancf.lmos.wot.thing.form.Form
17-
import ai.ancf.lmos.wot.thing.form.Operation
18-
import ai.ancf.lmos.wot.thing.schema.ContentListener
19-
import ai.ancf.lmos.wot.thing.schema.InteractionAffordance
20-
import ai.ancf.lmos.wot.thing.schema.WoTExposedThing
9+
import org.eclipse.thingweb.JsonMapper
10+
import org.eclipse.thingweb.Servient
11+
import org.eclipse.thingweb.content.Content
12+
import org.eclipse.thingweb.content.ContentCodecException
13+
import org.eclipse.thingweb.content.ContentManager
14+
import org.eclipse.thingweb.thing.ExposedThing
15+
import org.eclipse.thingweb.thing.ThingDescription
16+
import org.eclipse.thingweb.thing.form.Form
17+
import org.eclipse.thingweb.thing.form.Operation
18+
import org.eclipse.thingweb.thing.schema.ContentListener
19+
import org.eclipse.thingweb.thing.schema.InteractionAffordance
20+
import org.eclipse.thingweb.thing.schema.WoTExposedThing
2121
import ai.anfc.lmos.wot.binding.ProtocolServer
2222
import ai.anfc.lmos.wot.binding.ProtocolServerException
2323
import com.fasterxml.jackson.databind.DeserializationFeature

kotlin-wot-binding-http/src/main/kotlin/http/HttpsProtocolClientFactory.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* SPDX-License-Identifier: Apache-2.0
55
*/
66

7-
package ai.ancf.lmos.wot.binding.http
7+
package org.eclipse.thingweb.binding.http
88

99
/**
1010
* Creates new [HttpProtocolClient] instances that allow consuming Things via HTTPS.

kotlin-wot-binding-http/src/main/kotlin/http/routes/AbstractRoute.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
* SPDX-License-Identifier: Apache-2.0
55
*/
66

7-
package ai.ancf.lmos.wot.binding.http.routes
7+
package org.eclipse.thingweb.binding.http.routes
88

9-
import ai.ancf.lmos.wot.binding.http.routes.AbstractRoute
10-
import ai.ancf.lmos.wot.content.ContentManager
11-
import ai.ancf.lmos.wot.content.ContentManager.isSupportedMediaType
9+
import org.eclipse.thingweb.binding.http.routes.AbstractRoute
10+
import org.eclipse.thingweb.content.ContentManager
11+
import org.eclipse.thingweb.content.ContentManager.isSupportedMediaType
1212
import io.ktor.http.*
1313
import io.ktor.server.request.*
1414
import io.ktor.server.routing.*

kotlin-wot-binding-http/src/main/kotlin/http/routes/ThingsRoute.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
* SPDX-License-Identifier: Apache-2.0
55
*/
66

7-
package ai.ancf.lmos.wot.binding.http.routes
7+
package org.eclipse.thingweb.binding.http.routes
88

9-
import ai.ancf.lmos.wot.content.Content
10-
import ai.ancf.lmos.wot.content.ContentManager
11-
import ai.ancf.lmos.wot.thing.ExposedThing
9+
import org.eclipse.thingweb.content.Content
10+
import org.eclipse.thingweb.content.ContentManager
11+
import org.eclipse.thingweb.thing.ExposedThing
1212
import io.ktor.http.cio.*
1313
import io.ktor.server.routing.*
1414
import io.ktor.util.reflect.*

kotlin-wot-binding-http/src/test/kotlin/http/HttpProtocolClientFactoryTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* SPDX-License-Identifier: Apache-2.0
55
*/
66

7-
package ai.ancf.lmos.wot.binding.http
7+
package org.eclipse.thingweb.binding.http
88

99
import kotlin.test.Test
1010
import kotlin.test.assertEquals

0 commit comments

Comments
 (0)