diff --git a/.github/workflows/publish-sonatype.yml b/.github/workflows/publish-sonatype.yml index e1a6dde..1247fe9 100644 --- a/.github/workflows/publish-sonatype.yml +++ b/.github/workflows/publish-sonatype.yml @@ -30,7 +30,7 @@ jobs: - name: Publish to Sonatype run: | - ./gradlew --parallel --no-daemon publish + ./gradlew publishAndReleaseToMavenCentral --stacktrace -PmavenCentralUsername="$SONATYPE_USERNAME" -PmavenCentralPassword="$SONATYPE_PASSWORD" env: SONATYPE_USERNAME: ${{ secrets.ONEBUSAWAY_SDK_SONATYPE_USERNAME || secrets.SONATYPE_USERNAME }} SONATYPE_PASSWORD: ${{ secrets.ONEBUSAWAY_SDK_SONATYPE_PASSWORD || secrets.SONATYPE_PASSWORD }} diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ba6c348..f14b480 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0-alpha.1" + ".": "0.1.0-alpha.2" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 390c406..8fcc87a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.1.0-alpha.2 (2024-09-30) + +Full Changelog: [v0.1.0-alpha.1...v0.1.0-alpha.2](https://github.com/OneBusAway/java-sdk/compare/v0.1.0-alpha.1...v0.1.0-alpha.2) + +### Features + +* **api:** manual updates ([#4](https://github.com/OneBusAway/java-sdk/issues/4)) ([e9c7b74](https://github.com/OneBusAway/java-sdk/commit/e9c7b741ad5a0469d4f44899a0be89fc14ad2246)) + ## 0.1.0-alpha.1 (2024-09-27) Full Changelog: [v0.0.1-alpha.0...v0.1.0-alpha.1](https://github.com/OneBusAway/java-sdk/compare/v0.0.1-alpha.0...v0.1.0-alpha.1) diff --git a/README.md b/README.md index f55c8dc..76964b8 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ -[![Maven Central](https://img.shields.io/maven-central/v/com.open_transit.api/onebusaway-sdk-java)](https://central.sonatype.com/artifact/com.open_transit.api/onebusaway-sdk-java/0.1.0-alpha.1) +[![Maven Central](https://img.shields.io/maven-central/v/org.onebusaway/onebusaway-sdk-java)](https://central.sonatype.com/artifact/org.onebusaway/onebusaway-sdk-java/0.1.0-alpha.2) @@ -27,16 +27,16 @@ The REST API documentation can be foundĀ on [developer.onebusaway.org](https://d ```kotlin -implementation("com.open_transit.api:onebusaway-sdk-java:0.1.0-alpha.1") +implementation("org.onebusaway:onebusaway-sdk-java:0.1.0-alpha.2") ``` #### Maven ```xml - com.open_transit.api + org.onebusaway onebusaway-sdk-java - 0.1.0-alpha.1 + 0.1.0-alpha.2 ``` @@ -47,8 +47,8 @@ implementation("com.open_transit.api:onebusaway-sdk-java:0.1.0-alpha.1") Use `OnebusawaySdkOkHttpClient.builder()` to configure the client. At a minimum you need to set `.apiKey()`: ```java -import com.open_transit.api.client.OnebusawaySdkClient; -import com.open_transit.api.client.okhttp.OnebusawaySdkOkHttpClient; +import org.onebusaway.client.OnebusawaySdkClient; +import org.onebusaway.client.okhttp.OnebusawaySdkOkHttpClient; OnebusawaySdkClient client = OnebusawaySdkOkHttpClient.builder() .apiKey("My API Key") @@ -81,8 +81,8 @@ To create a new current time, first use the `CurrentTimeRetrieveParams` builder then pass that to the `retrieve` method of the `currentTime` service. ```java -import com.open_transit.api.models.CurrentTimeRetrieveParams; -import com.open_transit.api.models.CurrentTimeRetrieveResponse; +import org.onebusaway.models.CurrentTimeRetrieveParams; +import org.onebusaway.models.CurrentTimeRetrieveResponse; CurrentTimeRetrieveParams params = CurrentTimeRetrieveParams.builder().build(); CurrentTimeRetrieveResponse currentTime = client.currentTime().retrieve(params); @@ -103,7 +103,7 @@ Sometimes, the API may support other properties that are not yet supported in th you can attach them using the `putAdditionalProperty` method. ```java -import com.open_transit.api.models.core.JsonValue; +import org.onebusaway.models.core.JsonValue; CurrentTimeRetrieveParams params = CurrentTimeRetrieveParams.builder() // ... normal properties .putAdditionalProperty("secret_param", JsonValue.from("4242")) diff --git a/build.gradle.kts b/build.gradle.kts index a804890..877d27b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,20 +1,10 @@ plugins { - id("io.github.gradle-nexus.publish-plugin") version "1.1.0" + } allprojects { - group = "com.open_transit.api" - version = "0.1.0-alpha.1" // x-release-please-version + group = "org.onebusaway" + version = "0.1.0-alpha.2" // x-release-please-version } -nexusPublishing { - repositories { - sonatype { - nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/")) - snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")) - username.set(System.getenv("SONATYPE_USERNAME")) - password.set(System.getenv("SONATYPE_PASSWORD")) - } - } -} diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts index b88cd06..493cb32 100644 --- a/buildSrc/build.gradle.kts +++ b/buildSrc/build.gradle.kts @@ -1,12 +1,16 @@ plugins { `kotlin-dsl` + kotlin("jvm") version "1.9.22" + id("com.vanniktech.maven.publish") version "0.28.0" } repositories { gradlePluginPortal() + mavenCentral() } dependencies { implementation("com.diffplug.spotless:spotless-plugin-gradle:6.25.0") implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.23") + implementation("com.vanniktech:gradle-maven-publish-plugin:0.28.0") } diff --git a/buildSrc/src/main/kotlin/onebusaway-sdk.java.gradle.kts b/buildSrc/src/main/kotlin/onebusaway-sdk.java.gradle.kts index bc01a1d..53e6330 100644 --- a/buildSrc/src/main/kotlin/onebusaway-sdk.java.gradle.kts +++ b/buildSrc/src/main/kotlin/onebusaway-sdk.java.gradle.kts @@ -1,6 +1,9 @@ import com.diffplug.gradle.spotless.SpotlessExtension import org.gradle.api.tasks.testing.logging.TestExceptionFormat -import java.util.Locale +import com.vanniktech.maven.publish.JavaLibrary +import com.vanniktech.maven.publish.JavadocJar +import com.vanniktech.maven.publish.MavenPublishBaseExtension +import com.vanniktech.maven.publish.SonatypeHost plugins { `java-library` @@ -11,11 +14,6 @@ repositories { mavenCentral() } -configure { - withJavadocJar() - withSourcesJar() -} - configure { java { importOrder() @@ -35,10 +33,6 @@ tasks.withType().configureEach { options.release.set(8) } -tasks.named("javadocJar") { - setZip64(true) -} - tasks.named("jar") { manifest { attributes(mapOf( diff --git a/buildSrc/src/main/kotlin/onebusaway-sdk.kotlin.gradle.kts b/buildSrc/src/main/kotlin/onebusaway-sdk.kotlin.gradle.kts index 7f6e7c9..111e4a5 100644 --- a/buildSrc/src/main/kotlin/onebusaway-sdk.kotlin.gradle.kts +++ b/buildSrc/src/main/kotlin/onebusaway-sdk.kotlin.gradle.kts @@ -1,5 +1,6 @@ import com.diffplug.gradle.spotless.SpotlessExtension import org.jetbrains.kotlin.gradle.tasks.KotlinCompile +import com.vanniktech.maven.publish.* plugins { id("onebusaway-sdk.java") diff --git a/buildSrc/src/main/kotlin/onebusaway-sdk.publish.gradle.kts b/buildSrc/src/main/kotlin/onebusaway-sdk.publish.gradle.kts index f224d9b..4c6d7fa 100644 --- a/buildSrc/src/main/kotlin/onebusaway-sdk.publish.gradle.kts +++ b/buildSrc/src/main/kotlin/onebusaway-sdk.publish.gradle.kts @@ -3,65 +3,52 @@ import org.gradle.api.publish.maven.MavenPublication import org.gradle.kotlin.dsl.configure import org.gradle.kotlin.dsl.register import org.gradle.kotlin.dsl.get +import com.vanniktech.maven.publish.JavaLibrary +import com.vanniktech.maven.publish.JavadocJar +import com.vanniktech.maven.publish.MavenPublishBaseExtension +import com.vanniktech.maven.publish.SonatypeHost plugins { - `maven-publish` - `signing` + id("com.vanniktech.maven.publish") } -configure { - publications { - register("maven") { - from(components["java"]) +repositories { + gradlePluginPortal() + mavenCentral() +} - pom { - name.set("OneBusAway") - description.set("The OneBusAway REST API. For use with servers like\nhttps://api.pugetsound.onebusaway.org") - url.set("https://developer.onebusaway.org") +extra["signingInMemoryKey"] = System.getenv("GPG_SIGNING_KEY") +extra["signingInMemoryKeyId"] = System.getenv("GPG_SIGNING_KEY_ID") +extra["signingInMemoryKeyPassword"] = System.getenv("GPG_SIGNING_PASSWORD") - licenses { - license { - name.set("Apache-2.0") - } - } +configure { + signAllPublications() + publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL) - developers { - developer { - name.set("Onebusaway SDK") - email.set("info@onebusaway.org") - } - } + this.coordinates(project.group.toString(), project.name, project.version.toString()) - scm { - connection.set("scm:git:git://github.com/OneBusAway/java-sdk.git") - developerConnection.set("scm:git:git://github.com/OneBusAway/java-sdk.git") - url.set("https://github.com/OneBusAway/java-sdk") - } + pom { + name.set("OneBusAway") + description.set("The OneBusAway REST API. For use with servers like\nhttps://api.pugetsound.onebusaway.org") + url.set("https://developer.onebusaway.org") - versionMapping { - allVariants { - fromResolutionResult() - } - } + licenses { + license { + name.set("Apache-2.0") } } - } -} -signing { - val signingKeyId = System.getenv("GPG_SIGNING_KEY_ID")?.ifBlank { null } - val signingKey = System.getenv("GPG_SIGNING_KEY")?.ifBlank { null } - val signingPassword = System.getenv("GPG_SIGNING_PASSWORD")?.ifBlank { null } - if (signingKey != null && signingPassword != null) { - useInMemoryPgpKeys( - signingKeyId, - signingKey, - signingPassword, - ) - sign(publishing.publications["maven"]) - } -} + developers { + developer { + name.set("Onebusaway SDK") + email.set("info@onebusaway.org") + } + } -tasks.named("publish") { - dependsOn(":closeAndReleaseSonatypeStagingRepository") + scm { + connection.set("scm:git:git://github.com/OneBusAway/java-sdk.git") + developerConnection.set("scm:git:git://github.com/OneBusAway/java-sdk.git") + url.set("https://github.com/OneBusAway/java-sdk") + } + } } diff --git a/onebusaway-sdk-java-client-okhttp/src/main/kotlin/com/open_transit/api/client/okhttp/OkHttpClient.kt b/onebusaway-sdk-java-client-okhttp/src/main/kotlin/org/onebusaway/client/okhttp/OkHttpClient.kt similarity index 93% rename from onebusaway-sdk-java-client-okhttp/src/main/kotlin/com/open_transit/api/client/okhttp/OkHttpClient.kt rename to onebusaway-sdk-java-client-okhttp/src/main/kotlin/org/onebusaway/client/okhttp/OkHttpClient.kt index 1bd5170..cb77944 100644 --- a/onebusaway-sdk-java-client-okhttp/src/main/kotlin/com/open_transit/api/client/okhttp/OkHttpClient.kt +++ b/onebusaway-sdk-java-client-okhttp/src/main/kotlin/org/onebusaway/client/okhttp/OkHttpClient.kt @@ -1,14 +1,7 @@ -package com.open_transit.api.client.okhttp +package org.onebusaway.client.okhttp import com.google.common.collect.ListMultimap import com.google.common.collect.MultimapBuilder -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpClient -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpRequestBody -import com.open_transit.api.core.http.HttpResponse -import com.open_transit.api.errors.OnebusawaySdkIoException import java.io.IOException import java.io.InputStream import java.net.Proxy @@ -26,6 +19,13 @@ import okhttp3.RequestBody import okhttp3.RequestBody.Companion.toRequestBody import okhttp3.Response import okio.BufferedSink +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpClient +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpRequestBody +import org.onebusaway.core.http.HttpResponse +import org.onebusaway.errors.OnebusawaySdkIoException class OkHttpClient private constructor(private val okHttpClient: okhttp3.OkHttpClient, private val baseUrl: HttpUrl) : diff --git a/onebusaway-sdk-java-client-okhttp/src/main/kotlin/com/open_transit/api/client/okhttp/OnebusawaySdkOkHttpClient.kt b/onebusaway-sdk-java-client-okhttp/src/main/kotlin/org/onebusaway/client/okhttp/OnebusawaySdkOkHttpClient.kt similarity index 92% rename from onebusaway-sdk-java-client-okhttp/src/main/kotlin/com/open_transit/api/client/okhttp/OnebusawaySdkOkHttpClient.kt rename to onebusaway-sdk-java-client-okhttp/src/main/kotlin/org/onebusaway/client/okhttp/OnebusawaySdkOkHttpClient.kt index 358c18e..23df947 100644 --- a/onebusaway-sdk-java-client-okhttp/src/main/kotlin/com/open_transit/api/client/okhttp/OnebusawaySdkOkHttpClient.kt +++ b/onebusaway-sdk-java-client-okhttp/src/main/kotlin/org/onebusaway/client/okhttp/OnebusawaySdkOkHttpClient.kt @@ -1,14 +1,14 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.client.okhttp +package org.onebusaway.client.okhttp import com.fasterxml.jackson.databind.json.JsonMapper -import com.open_transit.api.client.OnebusawaySdkClient -import com.open_transit.api.client.OnebusawaySdkClientImpl -import com.open_transit.api.core.ClientOptions import java.net.Proxy import java.time.Clock import java.time.Duration +import org.onebusaway.client.OnebusawaySdkClient +import org.onebusaway.client.OnebusawaySdkClientImpl +import org.onebusaway.core.ClientOptions class OnebusawaySdkOkHttpClient private constructor() { diff --git a/onebusaway-sdk-java-client-okhttp/src/main/kotlin/com/open_transit/api/client/okhttp/OnebusawaySdkOkHttpClientAsync.kt b/onebusaway-sdk-java-client-okhttp/src/main/kotlin/org/onebusaway/client/okhttp/OnebusawaySdkOkHttpClientAsync.kt similarity index 92% rename from onebusaway-sdk-java-client-okhttp/src/main/kotlin/com/open_transit/api/client/okhttp/OnebusawaySdkOkHttpClientAsync.kt rename to onebusaway-sdk-java-client-okhttp/src/main/kotlin/org/onebusaway/client/okhttp/OnebusawaySdkOkHttpClientAsync.kt index 4dde3ca..9ab220e 100644 --- a/onebusaway-sdk-java-client-okhttp/src/main/kotlin/com/open_transit/api/client/okhttp/OnebusawaySdkOkHttpClientAsync.kt +++ b/onebusaway-sdk-java-client-okhttp/src/main/kotlin/org/onebusaway/client/okhttp/OnebusawaySdkOkHttpClientAsync.kt @@ -1,14 +1,14 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.client.okhttp +package org.onebusaway.client.okhttp import com.fasterxml.jackson.databind.json.JsonMapper -import com.open_transit.api.client.OnebusawaySdkClientAsync -import com.open_transit.api.client.OnebusawaySdkClientAsyncImpl -import com.open_transit.api.core.ClientOptions import java.net.Proxy import java.time.Clock import java.time.Duration +import org.onebusaway.client.OnebusawaySdkClientAsync +import org.onebusaway.client.OnebusawaySdkClientAsyncImpl +import org.onebusaway.core.ClientOptions class OnebusawaySdkOkHttpClientAsync private constructor() { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/client/OnebusawaySdkClient.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/client/OnebusawaySdkClient.kt similarity index 92% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/client/OnebusawaySdkClient.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/client/OnebusawaySdkClient.kt index 0d04e44..cc47378 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/client/OnebusawaySdkClient.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/client/OnebusawaySdkClient.kt @@ -2,10 +2,10 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.client +package org.onebusaway.client -import com.open_transit.api.models.* -import com.open_transit.api.services.blocking.* +import org.onebusaway.models.* +import org.onebusaway.services.blocking.* interface OnebusawaySdkClient { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/client/OnebusawaySdkClientAsync.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/client/OnebusawaySdkClientAsync.kt similarity index 93% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/client/OnebusawaySdkClientAsync.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/client/OnebusawaySdkClientAsync.kt index 44b885f..173a99b 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/client/OnebusawaySdkClientAsync.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/client/OnebusawaySdkClientAsync.kt @@ -2,10 +2,10 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.client +package org.onebusaway.client -import com.open_transit.api.models.* -import com.open_transit.api.services.async.* +import org.onebusaway.models.* +import org.onebusaway.services.async.* interface OnebusawaySdkClientAsync { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/client/OnebusawaySdkClientAsyncImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/client/OnebusawaySdkClientAsyncImpl.kt similarity index 94% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/client/OnebusawaySdkClientAsyncImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/client/OnebusawaySdkClientAsyncImpl.kt index 29140b9..bb2e134 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/client/OnebusawaySdkClientAsyncImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/client/OnebusawaySdkClientAsyncImpl.kt @@ -1,13 +1,13 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.client - -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.* -import com.open_transit.api.services.async.* -import com.open_transit.api.services.errorHandler +package org.onebusaway.client + +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.* +import org.onebusaway.services.async.* +import org.onebusaway.services.errorHandler class OnebusawaySdkClientAsyncImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/client/OnebusawaySdkClientImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/client/OnebusawaySdkClientImpl.kt similarity index 94% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/client/OnebusawaySdkClientImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/client/OnebusawaySdkClientImpl.kt index e89fe14..a763cbc 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/client/OnebusawaySdkClientImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/client/OnebusawaySdkClientImpl.kt @@ -1,13 +1,13 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.client - -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.* -import com.open_transit.api.services.blocking.* -import com.open_transit.api.services.errorHandler +package org.onebusaway.client + +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.* +import org.onebusaway.services.blocking.* +import org.onebusaway.services.errorHandler class OnebusawaySdkClientImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/BaseDeserializer.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/BaseDeserializer.kt similarity index 98% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/BaseDeserializer.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/BaseDeserializer.kt index 6755d19..9602a26 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/BaseDeserializer.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/BaseDeserializer.kt @@ -1,4 +1,4 @@ -package com.open_transit.api.core +package org.onebusaway.core import com.fasterxml.jackson.core.JsonParser import com.fasterxml.jackson.core.ObjectCodec diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/BaseSerializer.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/BaseSerializer.kt similarity index 83% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/BaseSerializer.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/BaseSerializer.kt index 5a14d0b..9d73a96 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/BaseSerializer.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/BaseSerializer.kt @@ -1,4 +1,4 @@ -package com.open_transit.api.core +package org.onebusaway.core import com.fasterxml.jackson.databind.ser.std.StdSerializer import kotlin.reflect.KClass diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/ClientOptions.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/ClientOptions.kt similarity index 97% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/ClientOptions.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/ClientOptions.kt index f2f7cd3..24f7a1e 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/ClientOptions.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/ClientOptions.kt @@ -1,13 +1,13 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.core +package org.onebusaway.core import com.fasterxml.jackson.databind.json.JsonMapper import com.google.common.collect.ArrayListMultimap import com.google.common.collect.ListMultimap -import com.open_transit.api.core.http.HttpClient -import com.open_transit.api.core.http.RetryingHttpClient import java.time.Clock +import org.onebusaway.core.http.HttpClient +import org.onebusaway.core.http.RetryingHttpClient class ClientOptions private constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/ObjectMappers.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/ObjectMappers.kt similarity index 97% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/ObjectMappers.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/ObjectMappers.kt index 6564814..7a4b2f8 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/ObjectMappers.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/ObjectMappers.kt @@ -1,6 +1,6 @@ @file:JvmName("ObjectMappers") -package com.open_transit.api.core +package org.onebusaway.core import com.fasterxml.jackson.annotation.JsonInclude import com.fasterxml.jackson.databind.DeserializationFeature diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/Properties.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/Properties.kt similarity index 97% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/Properties.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/Properties.kt index 2f9506a..2841e17 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/Properties.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/Properties.kt @@ -1,6 +1,6 @@ @file:JvmName("Properties") -package com.open_transit.api.core +package org.onebusaway.core import java.util.Properties diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/RequestOptions.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/RequestOptions.kt similarity index 96% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/RequestOptions.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/RequestOptions.kt index 80d8a0c..ec2f645 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/RequestOptions.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/RequestOptions.kt @@ -1,4 +1,4 @@ -package com.open_transit.api.core +package org.onebusaway.core import java.time.Duration diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/Utils.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/Utils.kt similarity index 93% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/Utils.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/Utils.kt index d019f13..9dce51e 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/Utils.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/Utils.kt @@ -1,12 +1,12 @@ @file:JvmName("Utils") -package com.open_transit.api.core +package org.onebusaway.core import com.google.common.collect.ImmutableListMultimap import com.google.common.collect.ListMultimap import com.google.common.collect.Multimaps -import com.open_transit.api.errors.OnebusawaySdkInvalidDataException import java.util.Collections +import org.onebusaway.errors.OnebusawaySdkInvalidDataException @JvmSynthetic internal fun T?.getOrThrow(name: String): T { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/Values.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/Values.kt similarity index 99% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/Values.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/Values.kt index 7461d9d..c7fcb7e 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/Values.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/Values.kt @@ -1,4 +1,4 @@ -package com.open_transit.api.core +package org.onebusaway.core import com.fasterxml.jackson.annotation.JacksonAnnotationsInside import com.fasterxml.jackson.annotation.JsonAutoDetect @@ -26,11 +26,11 @@ import com.fasterxml.jackson.databind.node.JsonNodeType.OBJECT import com.fasterxml.jackson.databind.node.JsonNodeType.POJO import com.fasterxml.jackson.databind.node.JsonNodeType.STRING import com.fasterxml.jackson.databind.ser.std.NullSerializer -import com.open_transit.api.errors.OnebusawaySdkInvalidDataException import java.nio.charset.Charset import java.util.Objects import java.util.Optional import org.apache.hc.core5.http.ContentType +import org.onebusaway.errors.OnebusawaySdkInvalidDataException @JsonDeserialize(using = JsonField.Deserializer::class) sealed class JsonField { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/http/BinaryResponseContent.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/http/BinaryResponseContent.kt similarity index 89% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/http/BinaryResponseContent.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/http/BinaryResponseContent.kt index 8531a88..f989fb4 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/http/BinaryResponseContent.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/http/BinaryResponseContent.kt @@ -1,4 +1,4 @@ -package com.open_transit.api.core.http +package org.onebusaway.core.http import java.io.IOException import java.io.InputStream diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/http/HttpClient.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/http/HttpClient.kt similarity index 82% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/http/HttpClient.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/http/HttpClient.kt index 788535d..81f4ab3 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/http/HttpClient.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/http/HttpClient.kt @@ -1,8 +1,8 @@ -package com.open_transit.api.core.http +package org.onebusaway.core.http -import com.open_transit.api.core.RequestOptions import java.lang.AutoCloseable import java.util.concurrent.CompletableFuture +import org.onebusaway.core.RequestOptions interface HttpClient : AutoCloseable { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/http/HttpMethod.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/http/HttpMethod.kt similarity index 76% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/http/HttpMethod.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/http/HttpMethod.kt index be3f561..2e5625a 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/http/HttpMethod.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/http/HttpMethod.kt @@ -1,4 +1,4 @@ -package com.open_transit.api.core.http +package org.onebusaway.core.http enum class HttpMethod { GET, diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/http/HttpRequest.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/http/HttpRequest.kt similarity index 97% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/http/HttpRequest.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/http/HttpRequest.kt index d9b97cc..1c907cb 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/http/HttpRequest.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/http/HttpRequest.kt @@ -1,10 +1,10 @@ -package com.open_transit.api.core.http +package org.onebusaway.core.http import com.google.common.collect.ArrayListMultimap import com.google.common.collect.ListMultimap import com.google.common.collect.Multimap import com.google.common.collect.MultimapBuilder -import com.open_transit.api.core.toUnmodifiable +import org.onebusaway.core.toUnmodifiable class HttpRequest private constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/http/HttpRequestBody.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/http/HttpRequestBody.kt similarity index 94% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/http/HttpRequestBody.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/http/HttpRequestBody.kt index 59157e7..b9617f4 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/http/HttpRequestBody.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/http/HttpRequestBody.kt @@ -1,4 +1,4 @@ -package com.open_transit.api.core.http +package org.onebusaway.core.http import java.io.IOException import java.io.OutputStream diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/http/HttpResponse.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/http/HttpResponse.kt similarity index 89% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/http/HttpResponse.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/http/HttpResponse.kt index 6cdd75c..b2870ca 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/http/HttpResponse.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/http/HttpResponse.kt @@ -1,4 +1,4 @@ -package com.open_transit.api.core.http +package org.onebusaway.core.http import com.google.common.collect.ListMultimap import java.io.InputStream diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/http/RetryingHttpClient.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/http/RetryingHttpClient.kt similarity index 98% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/http/RetryingHttpClient.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/http/RetryingHttpClient.kt index 63e93f8..f2f8118 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/core/http/RetryingHttpClient.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/core/http/RetryingHttpClient.kt @@ -1,10 +1,8 @@ @file:JvmSynthetic -package com.open_transit.api.core.http +package org.onebusaway.core.http import com.google.common.util.concurrent.MoreExecutors -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.errors.OnebusawaySdkIoException import java.io.IOException import java.time.Clock import java.time.Duration @@ -21,6 +19,8 @@ import java.util.concurrent.TimeUnit import java.util.function.Function import kotlin.math.min import kotlin.math.pow +import org.onebusaway.core.RequestOptions +import org.onebusaway.errors.OnebusawaySdkIoException class RetryingHttpClient private constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/BadRequestException.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/BadRequestException.kt similarity index 86% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/BadRequestException.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/BadRequestException.kt index b2803dd..dee8196 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/BadRequestException.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/BadRequestException.kt @@ -1,4 +1,4 @@ -package com.open_transit.api.errors +package org.onebusaway.errors import com.google.common.collect.ListMultimap diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/InternalServerException.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/InternalServerException.kt similarity index 87% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/InternalServerException.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/InternalServerException.kt index b64ff3b..5c3229f 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/InternalServerException.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/InternalServerException.kt @@ -1,4 +1,4 @@ -package com.open_transit.api.errors +package org.onebusaway.errors import com.google.common.collect.ListMultimap diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/NotFoundException.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/NotFoundException.kt similarity index 86% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/NotFoundException.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/NotFoundException.kt index 0894e60..35e69c4 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/NotFoundException.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/NotFoundException.kt @@ -1,4 +1,4 @@ -package com.open_transit.api.errors +package org.onebusaway.errors import com.google.common.collect.ListMultimap diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/OnebusawaySdkError.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/OnebusawaySdkError.kt similarity index 91% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/OnebusawaySdkError.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/OnebusawaySdkError.kt index f206a6a..ea9498c 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/OnebusawaySdkError.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/OnebusawaySdkError.kt @@ -1,14 +1,14 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.errors +package org.onebusaway.errors import com.fasterxml.jackson.annotation.JsonAnyGetter import com.fasterxml.jackson.annotation.JsonAnySetter import com.fasterxml.jackson.databind.annotation.JsonDeserialize -import com.open_transit.api.core.JsonValue -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable import java.util.Objects +import org.onebusaway.core.JsonValue +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable @JsonDeserialize(builder = OnebusawaySdkError.Builder::class) @NoAutoDetect diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/OnebusawaySdkException.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/OnebusawaySdkException.kt similarity index 80% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/OnebusawaySdkException.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/OnebusawaySdkException.kt index 73a2860..293f19c 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/OnebusawaySdkException.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/OnebusawaySdkException.kt @@ -1,4 +1,4 @@ -package com.open_transit.api.errors +package org.onebusaway.errors open class OnebusawaySdkException @JvmOverloads diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/OnebusawaySdkInvalidDataException.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/OnebusawaySdkInvalidDataException.kt similarity index 81% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/OnebusawaySdkInvalidDataException.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/OnebusawaySdkInvalidDataException.kt index 74e1ee8..42b999e 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/OnebusawaySdkInvalidDataException.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/OnebusawaySdkInvalidDataException.kt @@ -1,4 +1,4 @@ -package com.open_transit.api.errors +package org.onebusaway.errors class OnebusawaySdkInvalidDataException @JvmOverloads diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/OnebusawaySdkIoException.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/OnebusawaySdkIoException.kt similarity index 81% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/OnebusawaySdkIoException.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/OnebusawaySdkIoException.kt index 3800b35..5176f29 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/OnebusawaySdkIoException.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/OnebusawaySdkIoException.kt @@ -1,4 +1,4 @@ -package com.open_transit.api.errors +package org.onebusaway.errors class OnebusawaySdkIoException @JvmOverloads diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/OnebusawaySdkServiceException.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/OnebusawaySdkServiceException.kt similarity index 94% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/OnebusawaySdkServiceException.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/OnebusawaySdkServiceException.kt index 28b203d..96d7d2d 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/OnebusawaySdkServiceException.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/OnebusawaySdkServiceException.kt @@ -1,4 +1,4 @@ -package com.open_transit.api.errors +package org.onebusaway.errors import com.google.common.collect.ListMultimap diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/PermissionDeniedException.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/PermissionDeniedException.kt similarity index 86% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/PermissionDeniedException.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/PermissionDeniedException.kt index c37f94c..bb06e6a 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/PermissionDeniedException.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/PermissionDeniedException.kt @@ -1,4 +1,4 @@ -package com.open_transit.api.errors +package org.onebusaway.errors import com.google.common.collect.ListMultimap diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/RateLimitException.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/RateLimitException.kt similarity index 86% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/RateLimitException.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/RateLimitException.kt index b2bbfda..c210a32 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/RateLimitException.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/RateLimitException.kt @@ -1,4 +1,4 @@ -package com.open_transit.api.errors +package org.onebusaway.errors import com.google.common.collect.ListMultimap diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/UnauthorizedException.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/UnauthorizedException.kt similarity index 86% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/UnauthorizedException.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/UnauthorizedException.kt index 1d4aea2..dc34495 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/UnauthorizedException.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/UnauthorizedException.kt @@ -1,4 +1,4 @@ -package com.open_transit.api.errors +package org.onebusaway.errors import com.google.common.collect.ListMultimap diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/UnexpectedStatusCodeException.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/UnexpectedStatusCodeException.kt similarity index 88% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/UnexpectedStatusCodeException.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/UnexpectedStatusCodeException.kt index 6d46c33..a54c02d 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/UnexpectedStatusCodeException.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/UnexpectedStatusCodeException.kt @@ -1,4 +1,4 @@ -package com.open_transit.api.errors +package org.onebusaway.errors import com.google.common.collect.ListMultimap diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/UnprocessableEntityException.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/UnprocessableEntityException.kt similarity index 86% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/UnprocessableEntityException.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/UnprocessableEntityException.kt index 2b3d5ed..a30211a 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/errors/UnprocessableEntityException.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/errors/UnprocessableEntityException.kt @@ -1,4 +1,4 @@ -package com.open_transit.api.errors +package org.onebusaway.errors import com.google.common.collect.ListMultimap diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/AgenciesWithCoverageListParams.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/AgenciesWithCoverageListParams.kt similarity index 95% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/AgenciesWithCoverageListParams.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/AgenciesWithCoverageListParams.kt index d0786c6..2c4e7db 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/AgenciesWithCoverageListParams.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/AgenciesWithCoverageListParams.kt @@ -1,11 +1,11 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable -import com.open_transit.api.models.* import java.util.Objects +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable +import org.onebusaway.models.* class AgenciesWithCoverageListParams constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/AgenciesWithCoverageListResponse.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/AgenciesWithCoverageListResponse.kt similarity index 98% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/AgenciesWithCoverageListResponse.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/AgenciesWithCoverageListResponse.kt index c742bb0..1c3733e 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/AgenciesWithCoverageListResponse.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/AgenciesWithCoverageListResponse.kt @@ -1,18 +1,18 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models import com.fasterxml.jackson.annotation.JsonAnyGetter import com.fasterxml.jackson.annotation.JsonAnySetter import com.fasterxml.jackson.annotation.JsonProperty import com.fasterxml.jackson.databind.annotation.JsonDeserialize -import com.open_transit.api.core.ExcludeMissing -import com.open_transit.api.core.JsonField -import com.open_transit.api.core.JsonMissing -import com.open_transit.api.core.JsonValue -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable import java.util.Objects +import org.onebusaway.core.ExcludeMissing +import org.onebusaway.core.JsonField +import org.onebusaway.core.JsonMissing +import org.onebusaway.core.JsonValue +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable @JsonDeserialize(builder = AgenciesWithCoverageListResponse.Builder::class) @NoAutoDetect diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/AgencyRetrieveParams.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/AgencyRetrieveParams.kt similarity index 96% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/AgencyRetrieveParams.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/AgencyRetrieveParams.kt index 27955c6..ce16484 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/AgencyRetrieveParams.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/AgencyRetrieveParams.kt @@ -1,11 +1,11 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable -import com.open_transit.api.models.* import java.util.Objects +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable +import org.onebusaway.models.* class AgencyRetrieveParams constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/AgencyRetrieveResponse.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/AgencyRetrieveResponse.kt similarity index 98% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/AgencyRetrieveResponse.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/AgencyRetrieveResponse.kt index 82fb383..cc7060b 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/AgencyRetrieveResponse.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/AgencyRetrieveResponse.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models import com.fasterxml.jackson.annotation.JsonAnyGetter import com.fasterxml.jackson.annotation.JsonAnySetter import com.fasterxml.jackson.annotation.JsonProperty import com.fasterxml.jackson.databind.annotation.JsonDeserialize -import com.open_transit.api.core.ExcludeMissing -import com.open_transit.api.core.JsonField -import com.open_transit.api.core.JsonMissing -import com.open_transit.api.core.JsonValue -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable import java.util.Objects import java.util.Optional +import org.onebusaway.core.ExcludeMissing +import org.onebusaway.core.JsonField +import org.onebusaway.core.JsonMissing +import org.onebusaway.core.JsonValue +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable @JsonDeserialize(builder = AgencyRetrieveResponse.Builder::class) @NoAutoDetect diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ArrivalAndDepartureListParams.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ArrivalAndDepartureListParams.kt similarity index 97% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ArrivalAndDepartureListParams.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ArrivalAndDepartureListParams.kt index 7947230..e826e1d 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ArrivalAndDepartureListParams.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ArrivalAndDepartureListParams.kt @@ -1,14 +1,14 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable -import com.open_transit.api.models.* import java.time.OffsetDateTime import java.time.format.DateTimeFormatter import java.util.Objects import java.util.Optional +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable +import org.onebusaway.models.* class ArrivalAndDepartureListParams constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ArrivalAndDepartureListResponse.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ArrivalAndDepartureListResponse.kt similarity index 99% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ArrivalAndDepartureListResponse.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ArrivalAndDepartureListResponse.kt index 47f0268..f36f75f 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ArrivalAndDepartureListResponse.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ArrivalAndDepartureListResponse.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models import com.fasterxml.jackson.annotation.JsonAnyGetter import com.fasterxml.jackson.annotation.JsonAnySetter import com.fasterxml.jackson.annotation.JsonProperty import com.fasterxml.jackson.databind.annotation.JsonDeserialize -import com.open_transit.api.core.ExcludeMissing -import com.open_transit.api.core.JsonField -import com.open_transit.api.core.JsonMissing -import com.open_transit.api.core.JsonValue -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable import java.util.Objects import java.util.Optional +import org.onebusaway.core.ExcludeMissing +import org.onebusaway.core.JsonField +import org.onebusaway.core.JsonMissing +import org.onebusaway.core.JsonValue +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable @JsonDeserialize(builder = ArrivalAndDepartureListResponse.Builder::class) @NoAutoDetect diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ArrivalAndDepartureRetrieveParams.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ArrivalAndDepartureRetrieveParams.kt similarity index 97% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ArrivalAndDepartureRetrieveParams.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ArrivalAndDepartureRetrieveParams.kt index 2fea53e..6452f17 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ArrivalAndDepartureRetrieveParams.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ArrivalAndDepartureRetrieveParams.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable -import com.open_transit.api.models.* import java.util.Objects import java.util.Optional +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable +import org.onebusaway.models.* class ArrivalAndDepartureRetrieveParams constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ArrivalAndDepartureRetrieveResponse.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ArrivalAndDepartureRetrieveResponse.kt similarity index 99% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ArrivalAndDepartureRetrieveResponse.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ArrivalAndDepartureRetrieveResponse.kt index 58be6fc..213bc24 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ArrivalAndDepartureRetrieveResponse.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ArrivalAndDepartureRetrieveResponse.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models import com.fasterxml.jackson.annotation.JsonAnyGetter import com.fasterxml.jackson.annotation.JsonAnySetter import com.fasterxml.jackson.annotation.JsonProperty import com.fasterxml.jackson.databind.annotation.JsonDeserialize -import com.open_transit.api.core.ExcludeMissing -import com.open_transit.api.core.JsonField -import com.open_transit.api.core.JsonMissing -import com.open_transit.api.core.JsonValue -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable import java.util.Objects import java.util.Optional +import org.onebusaway.core.ExcludeMissing +import org.onebusaway.core.JsonField +import org.onebusaway.core.JsonMissing +import org.onebusaway.core.JsonValue +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable @JsonDeserialize(builder = ArrivalAndDepartureRetrieveResponse.Builder::class) @NoAutoDetect diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/BlockRetrieveParams.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/BlockRetrieveParams.kt similarity index 96% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/BlockRetrieveParams.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/BlockRetrieveParams.kt index 893442a..0fd55f6 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/BlockRetrieveParams.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/BlockRetrieveParams.kt @@ -1,11 +1,11 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable -import com.open_transit.api.models.* import java.util.Objects +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable +import org.onebusaway.models.* class BlockRetrieveParams constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/BlockRetrieveResponse.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/BlockRetrieveResponse.kt similarity index 99% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/BlockRetrieveResponse.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/BlockRetrieveResponse.kt index af331e9..3f3e42d 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/BlockRetrieveResponse.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/BlockRetrieveResponse.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models import com.fasterxml.jackson.annotation.JsonAnyGetter import com.fasterxml.jackson.annotation.JsonAnySetter import com.fasterxml.jackson.annotation.JsonProperty import com.fasterxml.jackson.databind.annotation.JsonDeserialize -import com.open_transit.api.core.ExcludeMissing -import com.open_transit.api.core.JsonField -import com.open_transit.api.core.JsonMissing -import com.open_transit.api.core.JsonValue -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable import java.util.Objects import java.util.Optional +import org.onebusaway.core.ExcludeMissing +import org.onebusaway.core.JsonField +import org.onebusaway.core.JsonMissing +import org.onebusaway.core.JsonValue +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable @JsonDeserialize(builder = BlockRetrieveResponse.Builder::class) @NoAutoDetect diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ConfigRetrieveParams.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ConfigRetrieveParams.kt similarity index 95% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ConfigRetrieveParams.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ConfigRetrieveParams.kt index 37282ec..4607179 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ConfigRetrieveParams.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ConfigRetrieveParams.kt @@ -1,11 +1,11 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable -import com.open_transit.api.models.* import java.util.Objects +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable +import org.onebusaway.models.* class ConfigRetrieveParams constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ConfigRetrieveResponse.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ConfigRetrieveResponse.kt similarity index 99% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ConfigRetrieveResponse.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ConfigRetrieveResponse.kt index 16de6e7..f1443dd 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ConfigRetrieveResponse.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ConfigRetrieveResponse.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models import com.fasterxml.jackson.annotation.JsonAnyGetter import com.fasterxml.jackson.annotation.JsonAnySetter import com.fasterxml.jackson.annotation.JsonProperty import com.fasterxml.jackson.databind.annotation.JsonDeserialize -import com.open_transit.api.core.ExcludeMissing -import com.open_transit.api.core.JsonField -import com.open_transit.api.core.JsonMissing -import com.open_transit.api.core.JsonValue -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable import java.util.Objects import java.util.Optional +import org.onebusaway.core.ExcludeMissing +import org.onebusaway.core.JsonField +import org.onebusaway.core.JsonMissing +import org.onebusaway.core.JsonValue +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable @JsonDeserialize(builder = ConfigRetrieveResponse.Builder::class) @NoAutoDetect diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/CurrentTimeRetrieveParams.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/CurrentTimeRetrieveParams.kt similarity index 95% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/CurrentTimeRetrieveParams.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/CurrentTimeRetrieveParams.kt index 3cbee68..846cd57 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/CurrentTimeRetrieveParams.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/CurrentTimeRetrieveParams.kt @@ -1,11 +1,11 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable -import com.open_transit.api.models.* import java.util.Objects +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable +import org.onebusaway.models.* class CurrentTimeRetrieveParams constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/CurrentTimeRetrieveResponse.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/CurrentTimeRetrieveResponse.kt similarity index 97% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/CurrentTimeRetrieveResponse.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/CurrentTimeRetrieveResponse.kt index b929ed4..dc7ebd8 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/CurrentTimeRetrieveResponse.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/CurrentTimeRetrieveResponse.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models import com.fasterxml.jackson.annotation.JsonAnyGetter import com.fasterxml.jackson.annotation.JsonAnySetter import com.fasterxml.jackson.annotation.JsonProperty import com.fasterxml.jackson.databind.annotation.JsonDeserialize -import com.open_transit.api.core.ExcludeMissing -import com.open_transit.api.core.JsonField -import com.open_transit.api.core.JsonMissing -import com.open_transit.api.core.JsonValue -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable import java.util.Objects import java.util.Optional +import org.onebusaway.core.ExcludeMissing +import org.onebusaway.core.JsonField +import org.onebusaway.core.JsonMissing +import org.onebusaway.core.JsonValue +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable @JsonDeserialize(builder = CurrentTimeRetrieveResponse.Builder::class) @NoAutoDetect diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/References.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/References.kt similarity index 99% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/References.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/References.kt index 40c61b1..6457db7 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/References.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/References.kt @@ -1,22 +1,22 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models import com.fasterxml.jackson.annotation.JsonAnyGetter import com.fasterxml.jackson.annotation.JsonAnySetter import com.fasterxml.jackson.annotation.JsonCreator import com.fasterxml.jackson.annotation.JsonProperty import com.fasterxml.jackson.databind.annotation.JsonDeserialize -import com.open_transit.api.core.Enum -import com.open_transit.api.core.ExcludeMissing -import com.open_transit.api.core.JsonField -import com.open_transit.api.core.JsonMissing -import com.open_transit.api.core.JsonValue -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable -import com.open_transit.api.errors.OnebusawaySdkInvalidDataException import java.util.Objects import java.util.Optional +import org.onebusaway.core.Enum +import org.onebusaway.core.ExcludeMissing +import org.onebusaway.core.JsonField +import org.onebusaway.core.JsonMissing +import org.onebusaway.core.JsonValue +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable +import org.onebusaway.errors.OnebusawaySdkInvalidDataException @JsonDeserialize(builder = References.Builder::class) @NoAutoDetect diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ReportProblemWithStopRetrieveParams.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ReportProblemWithStopRetrieveParams.kt similarity index 96% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ReportProblemWithStopRetrieveParams.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ReportProblemWithStopRetrieveParams.kt index b7b0298..99a2e5a 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ReportProblemWithStopRetrieveParams.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ReportProblemWithStopRetrieveParams.kt @@ -1,17 +1,17 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models import com.fasterxml.jackson.annotation.JsonCreator -import com.open_transit.api.core.Enum -import com.open_transit.api.core.JsonField -import com.open_transit.api.core.JsonValue -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable -import com.open_transit.api.errors.OnebusawaySdkInvalidDataException -import com.open_transit.api.models.* import java.util.Objects import java.util.Optional +import org.onebusaway.core.Enum +import org.onebusaway.core.JsonField +import org.onebusaway.core.JsonValue +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable +import org.onebusaway.errors.OnebusawaySdkInvalidDataException +import org.onebusaway.models.* class ReportProblemWithStopRetrieveParams constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ReportProblemWithTripRetrieveParams.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ReportProblemWithTripRetrieveParams.kt similarity index 97% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ReportProblemWithTripRetrieveParams.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ReportProblemWithTripRetrieveParams.kt index 7a9d333..9cfbce1 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ReportProblemWithTripRetrieveParams.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ReportProblemWithTripRetrieveParams.kt @@ -1,17 +1,17 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models import com.fasterxml.jackson.annotation.JsonCreator -import com.open_transit.api.core.Enum -import com.open_transit.api.core.JsonField -import com.open_transit.api.core.JsonValue -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable -import com.open_transit.api.errors.OnebusawaySdkInvalidDataException -import com.open_transit.api.models.* import java.util.Objects import java.util.Optional +import org.onebusaway.core.Enum +import org.onebusaway.core.JsonField +import org.onebusaway.core.JsonValue +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable +import org.onebusaway.errors.OnebusawaySdkInvalidDataException +import org.onebusaway.models.* class ReportProblemWithTripRetrieveParams constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ResponseWrapper.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ResponseWrapper.kt similarity index 94% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ResponseWrapper.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ResponseWrapper.kt index 0006b9a..23b8643 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ResponseWrapper.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ResponseWrapper.kt @@ -1,18 +1,18 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models import com.fasterxml.jackson.annotation.JsonAnyGetter import com.fasterxml.jackson.annotation.JsonAnySetter import com.fasterxml.jackson.annotation.JsonProperty import com.fasterxml.jackson.databind.annotation.JsonDeserialize -import com.open_transit.api.core.ExcludeMissing -import com.open_transit.api.core.JsonField -import com.open_transit.api.core.JsonMissing -import com.open_transit.api.core.JsonValue -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable import java.util.Objects +import org.onebusaway.core.ExcludeMissing +import org.onebusaway.core.JsonField +import org.onebusaway.core.JsonMissing +import org.onebusaway.core.JsonValue +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable @JsonDeserialize(builder = ResponseWrapper.Builder::class) @NoAutoDetect diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/RouteIdsForAgencyListParams.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/RouteIdsForAgencyListParams.kt similarity index 96% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/RouteIdsForAgencyListParams.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/RouteIdsForAgencyListParams.kt index a389573..203c0cb 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/RouteIdsForAgencyListParams.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/RouteIdsForAgencyListParams.kt @@ -1,11 +1,11 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable -import com.open_transit.api.models.* import java.util.Objects +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable +import org.onebusaway.models.* class RouteIdsForAgencyListParams constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/RouteIdsForAgencyListResponse.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/RouteIdsForAgencyListResponse.kt similarity index 97% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/RouteIdsForAgencyListResponse.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/RouteIdsForAgencyListResponse.kt index 9f5f507..43cb51c 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/RouteIdsForAgencyListResponse.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/RouteIdsForAgencyListResponse.kt @@ -1,18 +1,18 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models import com.fasterxml.jackson.annotation.JsonAnyGetter import com.fasterxml.jackson.annotation.JsonAnySetter import com.fasterxml.jackson.annotation.JsonProperty import com.fasterxml.jackson.databind.annotation.JsonDeserialize -import com.open_transit.api.core.ExcludeMissing -import com.open_transit.api.core.JsonField -import com.open_transit.api.core.JsonMissing -import com.open_transit.api.core.JsonValue -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable import java.util.Objects +import org.onebusaway.core.ExcludeMissing +import org.onebusaway.core.JsonField +import org.onebusaway.core.JsonMissing +import org.onebusaway.core.JsonValue +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable @JsonDeserialize(builder = RouteIdsForAgencyListResponse.Builder::class) @NoAutoDetect diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/RouteRetrieveParams.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/RouteRetrieveParams.kt similarity index 96% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/RouteRetrieveParams.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/RouteRetrieveParams.kt index 8a3a5ad..001476f 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/RouteRetrieveParams.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/RouteRetrieveParams.kt @@ -1,11 +1,11 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable -import com.open_transit.api.models.* import java.util.Objects +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable +import org.onebusaway.models.* class RouteRetrieveParams constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/RouteRetrieveResponse.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/RouteRetrieveResponse.kt similarity index 98% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/RouteRetrieveResponse.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/RouteRetrieveResponse.kt index 22e185a..acda0c5 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/RouteRetrieveResponse.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/RouteRetrieveResponse.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models import com.fasterxml.jackson.annotation.JsonAnyGetter import com.fasterxml.jackson.annotation.JsonAnySetter import com.fasterxml.jackson.annotation.JsonProperty import com.fasterxml.jackson.databind.annotation.JsonDeserialize -import com.open_transit.api.core.ExcludeMissing -import com.open_transit.api.core.JsonField -import com.open_transit.api.core.JsonMissing -import com.open_transit.api.core.JsonValue -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable import java.util.Objects import java.util.Optional +import org.onebusaway.core.ExcludeMissing +import org.onebusaway.core.JsonField +import org.onebusaway.core.JsonMissing +import org.onebusaway.core.JsonValue +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable @JsonDeserialize(builder = RouteRetrieveResponse.Builder::class) @NoAutoDetect diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/RoutesForAgencyListParams.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/RoutesForAgencyListParams.kt similarity index 96% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/RoutesForAgencyListParams.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/RoutesForAgencyListParams.kt index f15605b..2eb9776 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/RoutesForAgencyListParams.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/RoutesForAgencyListParams.kt @@ -1,11 +1,11 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable -import com.open_transit.api.models.* import java.util.Objects +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable +import org.onebusaway.models.* class RoutesForAgencyListParams constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/RoutesForAgencyListResponse.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/RoutesForAgencyListResponse.kt similarity index 98% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/RoutesForAgencyListResponse.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/RoutesForAgencyListResponse.kt index 69726b6..f399255 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/RoutesForAgencyListResponse.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/RoutesForAgencyListResponse.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models import com.fasterxml.jackson.annotation.JsonAnyGetter import com.fasterxml.jackson.annotation.JsonAnySetter import com.fasterxml.jackson.annotation.JsonProperty import com.fasterxml.jackson.databind.annotation.JsonDeserialize -import com.open_transit.api.core.ExcludeMissing -import com.open_transit.api.core.JsonField -import com.open_transit.api.core.JsonMissing -import com.open_transit.api.core.JsonValue -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable import java.util.Objects import java.util.Optional +import org.onebusaway.core.ExcludeMissing +import org.onebusaway.core.JsonField +import org.onebusaway.core.JsonMissing +import org.onebusaway.core.JsonValue +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable @JsonDeserialize(builder = RoutesForAgencyListResponse.Builder::class) @NoAutoDetect diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/RoutesForLocationListParams.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/RoutesForLocationListParams.kt similarity index 97% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/RoutesForLocationListParams.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/RoutesForLocationListParams.kt index 95e2687..5d7f3e1 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/RoutesForLocationListParams.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/RoutesForLocationListParams.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable -import com.open_transit.api.models.* import java.util.Objects import java.util.Optional +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable +import org.onebusaway.models.* class RoutesForLocationListParams constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/RoutesForLocationListResponse.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/RoutesForLocationListResponse.kt similarity index 98% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/RoutesForLocationListResponse.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/RoutesForLocationListResponse.kt index 5d15aef..aed246e 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/RoutesForLocationListResponse.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/RoutesForLocationListResponse.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models import com.fasterxml.jackson.annotation.JsonAnyGetter import com.fasterxml.jackson.annotation.JsonAnySetter import com.fasterxml.jackson.annotation.JsonProperty import com.fasterxml.jackson.databind.annotation.JsonDeserialize -import com.open_transit.api.core.ExcludeMissing -import com.open_transit.api.core.JsonField -import com.open_transit.api.core.JsonMissing -import com.open_transit.api.core.JsonValue -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable import java.util.Objects import java.util.Optional +import org.onebusaway.core.ExcludeMissing +import org.onebusaway.core.JsonField +import org.onebusaway.core.JsonMissing +import org.onebusaway.core.JsonValue +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable @JsonDeserialize(builder = RoutesForLocationListResponse.Builder::class) @NoAutoDetect diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ScheduleForRouteRetrieveParams.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ScheduleForRouteRetrieveParams.kt similarity index 96% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ScheduleForRouteRetrieveParams.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ScheduleForRouteRetrieveParams.kt index bcad878..3496c12 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ScheduleForRouteRetrieveParams.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ScheduleForRouteRetrieveParams.kt @@ -1,13 +1,13 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable -import com.open_transit.api.models.* import java.time.LocalDate import java.util.Objects import java.util.Optional +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable +import org.onebusaway.models.* class ScheduleForRouteRetrieveParams constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ScheduleForRouteRetrieveResponse.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ScheduleForRouteRetrieveResponse.kt similarity index 99% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ScheduleForRouteRetrieveResponse.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ScheduleForRouteRetrieveResponse.kt index ae08a37..85b44f2 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ScheduleForRouteRetrieveResponse.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ScheduleForRouteRetrieveResponse.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models import com.fasterxml.jackson.annotation.JsonAnyGetter import com.fasterxml.jackson.annotation.JsonAnySetter import com.fasterxml.jackson.annotation.JsonProperty import com.fasterxml.jackson.databind.annotation.JsonDeserialize -import com.open_transit.api.core.ExcludeMissing -import com.open_transit.api.core.JsonField -import com.open_transit.api.core.JsonMissing -import com.open_transit.api.core.JsonValue -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable import java.util.Objects import java.util.Optional +import org.onebusaway.core.ExcludeMissing +import org.onebusaway.core.JsonField +import org.onebusaway.core.JsonMissing +import org.onebusaway.core.JsonValue +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable @JsonDeserialize(builder = ScheduleForRouteRetrieveResponse.Builder::class) @NoAutoDetect diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ScheduleForStopRetrieveParams.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ScheduleForStopRetrieveParams.kt similarity index 96% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ScheduleForStopRetrieveParams.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ScheduleForStopRetrieveParams.kt index bb2d283..b674724 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ScheduleForStopRetrieveParams.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ScheduleForStopRetrieveParams.kt @@ -1,13 +1,13 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable -import com.open_transit.api.models.* import java.time.LocalDate import java.util.Objects import java.util.Optional +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable +import org.onebusaway.models.* class ScheduleForStopRetrieveParams constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ScheduleForStopRetrieveResponse.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ScheduleForStopRetrieveResponse.kt similarity index 99% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ScheduleForStopRetrieveResponse.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ScheduleForStopRetrieveResponse.kt index a3bcfe6..f1d1894 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ScheduleForStopRetrieveResponse.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ScheduleForStopRetrieveResponse.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models import com.fasterxml.jackson.annotation.JsonAnyGetter import com.fasterxml.jackson.annotation.JsonAnySetter import com.fasterxml.jackson.annotation.JsonProperty import com.fasterxml.jackson.databind.annotation.JsonDeserialize -import com.open_transit.api.core.ExcludeMissing -import com.open_transit.api.core.JsonField -import com.open_transit.api.core.JsonMissing -import com.open_transit.api.core.JsonValue -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable import java.util.Objects import java.util.Optional +import org.onebusaway.core.ExcludeMissing +import org.onebusaway.core.JsonField +import org.onebusaway.core.JsonMissing +import org.onebusaway.core.JsonValue +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable @JsonDeserialize(builder = ScheduleForStopRetrieveResponse.Builder::class) @NoAutoDetect diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/SearchForRouteListParams.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/SearchForRouteListParams.kt similarity index 96% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/SearchForRouteListParams.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/SearchForRouteListParams.kt index cd6d940..486add8 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/SearchForRouteListParams.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/SearchForRouteListParams.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable -import com.open_transit.api.models.* import java.util.Objects import java.util.Optional +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable +import org.onebusaway.models.* class SearchForRouteListParams constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/SearchForRouteListResponse.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/SearchForRouteListResponse.kt similarity index 98% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/SearchForRouteListResponse.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/SearchForRouteListResponse.kt index 4e2a73c..014a7a2 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/SearchForRouteListResponse.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/SearchForRouteListResponse.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models import com.fasterxml.jackson.annotation.JsonAnyGetter import com.fasterxml.jackson.annotation.JsonAnySetter import com.fasterxml.jackson.annotation.JsonProperty import com.fasterxml.jackson.databind.annotation.JsonDeserialize -import com.open_transit.api.core.ExcludeMissing -import com.open_transit.api.core.JsonField -import com.open_transit.api.core.JsonMissing -import com.open_transit.api.core.JsonValue -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable import java.util.Objects import java.util.Optional +import org.onebusaway.core.ExcludeMissing +import org.onebusaway.core.JsonField +import org.onebusaway.core.JsonMissing +import org.onebusaway.core.JsonValue +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable @JsonDeserialize(builder = SearchForRouteListResponse.Builder::class) @NoAutoDetect diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/SearchForStopListParams.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/SearchForStopListParams.kt similarity index 96% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/SearchForStopListParams.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/SearchForStopListParams.kt index 94a1cee..5e23b68 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/SearchForStopListParams.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/SearchForStopListParams.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable -import com.open_transit.api.models.* import java.util.Objects import java.util.Optional +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable +import org.onebusaway.models.* class SearchForStopListParams constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/SearchForStopListResponse.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/SearchForStopListResponse.kt similarity index 98% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/SearchForStopListResponse.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/SearchForStopListResponse.kt index d3ddefe..752619a 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/SearchForStopListResponse.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/SearchForStopListResponse.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models import com.fasterxml.jackson.annotation.JsonAnyGetter import com.fasterxml.jackson.annotation.JsonAnySetter import com.fasterxml.jackson.annotation.JsonProperty import com.fasterxml.jackson.databind.annotation.JsonDeserialize -import com.open_transit.api.core.ExcludeMissing -import com.open_transit.api.core.JsonField -import com.open_transit.api.core.JsonMissing -import com.open_transit.api.core.JsonValue -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable import java.util.Objects import java.util.Optional +import org.onebusaway.core.ExcludeMissing +import org.onebusaway.core.JsonField +import org.onebusaway.core.JsonMissing +import org.onebusaway.core.JsonValue +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable @JsonDeserialize(builder = SearchForStopListResponse.Builder::class) @NoAutoDetect diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ShapeRetrieveParams.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ShapeRetrieveParams.kt similarity index 96% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ShapeRetrieveParams.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ShapeRetrieveParams.kt index 32b82f3..db77c61 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ShapeRetrieveParams.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ShapeRetrieveParams.kt @@ -1,11 +1,11 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable -import com.open_transit.api.models.* import java.util.Objects +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable +import org.onebusaway.models.* class ShapeRetrieveParams constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ShapeRetrieveResponse.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ShapeRetrieveResponse.kt similarity index 97% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ShapeRetrieveResponse.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ShapeRetrieveResponse.kt index 0f89892..b3d39f3 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/ShapeRetrieveResponse.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/ShapeRetrieveResponse.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models import com.fasterxml.jackson.annotation.JsonAnyGetter import com.fasterxml.jackson.annotation.JsonAnySetter import com.fasterxml.jackson.annotation.JsonProperty import com.fasterxml.jackson.databind.annotation.JsonDeserialize -import com.open_transit.api.core.ExcludeMissing -import com.open_transit.api.core.JsonField -import com.open_transit.api.core.JsonMissing -import com.open_transit.api.core.JsonValue -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable import java.util.Objects import java.util.Optional +import org.onebusaway.core.ExcludeMissing +import org.onebusaway.core.JsonField +import org.onebusaway.core.JsonMissing +import org.onebusaway.core.JsonValue +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable @JsonDeserialize(builder = ShapeRetrieveResponse.Builder::class) @NoAutoDetect diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/StopIdsForAgencyListParams.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/StopIdsForAgencyListParams.kt similarity index 96% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/StopIdsForAgencyListParams.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/StopIdsForAgencyListParams.kt index b90d657..69a7f25 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/StopIdsForAgencyListParams.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/StopIdsForAgencyListParams.kt @@ -1,11 +1,11 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable -import com.open_transit.api.models.* import java.util.Objects +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable +import org.onebusaway.models.* class StopIdsForAgencyListParams constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/StopIdsForAgencyListResponse.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/StopIdsForAgencyListResponse.kt similarity index 97% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/StopIdsForAgencyListResponse.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/StopIdsForAgencyListResponse.kt index ce47649..3ef7440 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/StopIdsForAgencyListResponse.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/StopIdsForAgencyListResponse.kt @@ -1,18 +1,18 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models import com.fasterxml.jackson.annotation.JsonAnyGetter import com.fasterxml.jackson.annotation.JsonAnySetter import com.fasterxml.jackson.annotation.JsonProperty import com.fasterxml.jackson.databind.annotation.JsonDeserialize -import com.open_transit.api.core.ExcludeMissing -import com.open_transit.api.core.JsonField -import com.open_transit.api.core.JsonMissing -import com.open_transit.api.core.JsonValue -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable import java.util.Objects +import org.onebusaway.core.ExcludeMissing +import org.onebusaway.core.JsonField +import org.onebusaway.core.JsonMissing +import org.onebusaway.core.JsonValue +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable @JsonDeserialize(builder = StopIdsForAgencyListResponse.Builder::class) @NoAutoDetect diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/StopRetrieveParams.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/StopRetrieveParams.kt similarity index 96% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/StopRetrieveParams.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/StopRetrieveParams.kt index 8cc2d2a..d9bbe30 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/StopRetrieveParams.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/StopRetrieveParams.kt @@ -1,11 +1,11 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable -import com.open_transit.api.models.* import java.util.Objects +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable +import org.onebusaway.models.* class StopRetrieveParams constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/StopRetrieveResponse.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/StopRetrieveResponse.kt similarity index 98% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/StopRetrieveResponse.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/StopRetrieveResponse.kt index 15fe0ec..fccd764 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/StopRetrieveResponse.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/StopRetrieveResponse.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models import com.fasterxml.jackson.annotation.JsonAnyGetter import com.fasterxml.jackson.annotation.JsonAnySetter import com.fasterxml.jackson.annotation.JsonProperty import com.fasterxml.jackson.databind.annotation.JsonDeserialize -import com.open_transit.api.core.ExcludeMissing -import com.open_transit.api.core.JsonField -import com.open_transit.api.core.JsonMissing -import com.open_transit.api.core.JsonValue -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable import java.util.Objects import java.util.Optional +import org.onebusaway.core.ExcludeMissing +import org.onebusaway.core.JsonField +import org.onebusaway.core.JsonMissing +import org.onebusaway.core.JsonValue +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable @JsonDeserialize(builder = StopRetrieveResponse.Builder::class) @NoAutoDetect diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/StopsForLocationListParams.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/StopsForLocationListParams.kt similarity index 97% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/StopsForLocationListParams.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/StopsForLocationListParams.kt index 2f29fe7..cd8bcee 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/StopsForLocationListParams.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/StopsForLocationListParams.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable -import com.open_transit.api.models.* import java.util.Objects import java.util.Optional +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable +import org.onebusaway.models.* class StopsForLocationListParams constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/StopsForLocationListResponse.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/StopsForLocationListResponse.kt similarity index 98% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/StopsForLocationListResponse.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/StopsForLocationListResponse.kt index 29c5dee..e770116 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/StopsForLocationListResponse.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/StopsForLocationListResponse.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models import com.fasterxml.jackson.annotation.JsonAnyGetter import com.fasterxml.jackson.annotation.JsonAnySetter import com.fasterxml.jackson.annotation.JsonProperty import com.fasterxml.jackson.databind.annotation.JsonDeserialize -import com.open_transit.api.core.ExcludeMissing -import com.open_transit.api.core.JsonField -import com.open_transit.api.core.JsonMissing -import com.open_transit.api.core.JsonValue -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable import java.util.Objects import java.util.Optional +import org.onebusaway.core.ExcludeMissing +import org.onebusaway.core.JsonField +import org.onebusaway.core.JsonMissing +import org.onebusaway.core.JsonValue +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable @JsonDeserialize(builder = StopsForLocationListResponse.Builder::class) @NoAutoDetect diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/StopsForRouteListParams.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/StopsForRouteListParams.kt similarity index 97% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/StopsForRouteListParams.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/StopsForRouteListParams.kt index dcfd370..3b79810 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/StopsForRouteListParams.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/StopsForRouteListParams.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable -import com.open_transit.api.models.* import java.util.Objects import java.util.Optional +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable +import org.onebusaway.models.* class StopsForRouteListParams constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/StopsForRouteListResponse.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/StopsForRouteListResponse.kt similarity index 99% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/StopsForRouteListResponse.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/StopsForRouteListResponse.kt index 4bdc740..7c85743 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/StopsForRouteListResponse.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/StopsForRouteListResponse.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models import com.fasterxml.jackson.annotation.JsonAnyGetter import com.fasterxml.jackson.annotation.JsonAnySetter import com.fasterxml.jackson.annotation.JsonProperty import com.fasterxml.jackson.databind.annotation.JsonDeserialize -import com.open_transit.api.core.ExcludeMissing -import com.open_transit.api.core.JsonField -import com.open_transit.api.core.JsonMissing -import com.open_transit.api.core.JsonValue -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable import java.util.Objects import java.util.Optional +import org.onebusaway.core.ExcludeMissing +import org.onebusaway.core.JsonField +import org.onebusaway.core.JsonMissing +import org.onebusaway.core.JsonValue +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable @JsonDeserialize(builder = StopsForRouteListResponse.Builder::class) @NoAutoDetect diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/TripDetailRetrieveParams.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/TripDetailRetrieveParams.kt similarity index 97% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/TripDetailRetrieveParams.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/TripDetailRetrieveParams.kt index 7d61367..d9ffd19 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/TripDetailRetrieveParams.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/TripDetailRetrieveParams.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable -import com.open_transit.api.models.* import java.util.Objects import java.util.Optional +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable +import org.onebusaway.models.* class TripDetailRetrieveParams constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/TripDetailRetrieveResponse.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/TripDetailRetrieveResponse.kt similarity index 99% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/TripDetailRetrieveResponse.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/TripDetailRetrieveResponse.kt index fdf1d0f..7708067 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/TripDetailRetrieveResponse.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/TripDetailRetrieveResponse.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models import com.fasterxml.jackson.annotation.JsonAnyGetter import com.fasterxml.jackson.annotation.JsonAnySetter import com.fasterxml.jackson.annotation.JsonProperty import com.fasterxml.jackson.databind.annotation.JsonDeserialize -import com.open_transit.api.core.ExcludeMissing -import com.open_transit.api.core.JsonField -import com.open_transit.api.core.JsonMissing -import com.open_transit.api.core.JsonValue -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable import java.util.Objects import java.util.Optional +import org.onebusaway.core.ExcludeMissing +import org.onebusaway.core.JsonField +import org.onebusaway.core.JsonMissing +import org.onebusaway.core.JsonValue +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable @JsonDeserialize(builder = TripDetailRetrieveResponse.Builder::class) @NoAutoDetect diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/TripForVehicleRetrieveParams.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/TripForVehicleRetrieveParams.kt similarity index 97% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/TripForVehicleRetrieveParams.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/TripForVehicleRetrieveParams.kt index d894901..2d25862 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/TripForVehicleRetrieveParams.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/TripForVehicleRetrieveParams.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable -import com.open_transit.api.models.* import java.util.Objects import java.util.Optional +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable +import org.onebusaway.models.* class TripForVehicleRetrieveParams constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/TripForVehicleRetrieveResponse.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/TripForVehicleRetrieveResponse.kt similarity index 99% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/TripForVehicleRetrieveResponse.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/TripForVehicleRetrieveResponse.kt index dd98efa..275e46d 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/TripForVehicleRetrieveResponse.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/TripForVehicleRetrieveResponse.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models import com.fasterxml.jackson.annotation.JsonAnyGetter import com.fasterxml.jackson.annotation.JsonAnySetter import com.fasterxml.jackson.annotation.JsonProperty import com.fasterxml.jackson.databind.annotation.JsonDeserialize -import com.open_transit.api.core.ExcludeMissing -import com.open_transit.api.core.JsonField -import com.open_transit.api.core.JsonMissing -import com.open_transit.api.core.JsonValue -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable import java.util.Objects import java.util.Optional +import org.onebusaway.core.ExcludeMissing +import org.onebusaway.core.JsonField +import org.onebusaway.core.JsonMissing +import org.onebusaway.core.JsonValue +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable @JsonDeserialize(builder = TripForVehicleRetrieveResponse.Builder::class) @NoAutoDetect diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/TripRetrieveParams.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/TripRetrieveParams.kt similarity index 96% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/TripRetrieveParams.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/TripRetrieveParams.kt index 674d843..4192c50 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/TripRetrieveParams.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/TripRetrieveParams.kt @@ -1,11 +1,11 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable -import com.open_transit.api.models.* import java.util.Objects +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable +import org.onebusaway.models.* class TripRetrieveParams constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/TripRetrieveResponse.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/TripRetrieveResponse.kt similarity index 98% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/TripRetrieveResponse.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/TripRetrieveResponse.kt index 7ed1506..7ec63d8 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/TripRetrieveResponse.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/TripRetrieveResponse.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models import com.fasterxml.jackson.annotation.JsonAnyGetter import com.fasterxml.jackson.annotation.JsonAnySetter import com.fasterxml.jackson.annotation.JsonProperty import com.fasterxml.jackson.databind.annotation.JsonDeserialize -import com.open_transit.api.core.ExcludeMissing -import com.open_transit.api.core.JsonField -import com.open_transit.api.core.JsonMissing -import com.open_transit.api.core.JsonValue -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable import java.util.Objects import java.util.Optional +import org.onebusaway.core.ExcludeMissing +import org.onebusaway.core.JsonField +import org.onebusaway.core.JsonMissing +import org.onebusaway.core.JsonValue +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable @JsonDeserialize(builder = TripRetrieveResponse.Builder::class) @NoAutoDetect diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/TripsForLocationListParams.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/TripsForLocationListParams.kt similarity index 97% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/TripsForLocationListParams.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/TripsForLocationListParams.kt index 2abfee7..249ea48 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/TripsForLocationListParams.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/TripsForLocationListParams.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable -import com.open_transit.api.models.* import java.util.Objects import java.util.Optional +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable +import org.onebusaway.models.* class TripsForLocationListParams constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/TripsForLocationListResponse.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/TripsForLocationListResponse.kt similarity index 99% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/TripsForLocationListResponse.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/TripsForLocationListResponse.kt index 4670f11..5b4d01d 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/TripsForLocationListResponse.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/TripsForLocationListResponse.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models import com.fasterxml.jackson.annotation.JsonAnyGetter import com.fasterxml.jackson.annotation.JsonAnySetter import com.fasterxml.jackson.annotation.JsonProperty import com.fasterxml.jackson.databind.annotation.JsonDeserialize -import com.open_transit.api.core.ExcludeMissing -import com.open_transit.api.core.JsonField -import com.open_transit.api.core.JsonMissing -import com.open_transit.api.core.JsonValue -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable import java.util.Objects import java.util.Optional +import org.onebusaway.core.ExcludeMissing +import org.onebusaway.core.JsonField +import org.onebusaway.core.JsonMissing +import org.onebusaway.core.JsonValue +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable @JsonDeserialize(builder = TripsForLocationListResponse.Builder::class) @NoAutoDetect diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/TripsForRouteListParams.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/TripsForRouteListParams.kt similarity index 97% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/TripsForRouteListParams.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/TripsForRouteListParams.kt index 9bdf028..51c2eb7 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/TripsForRouteListParams.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/TripsForRouteListParams.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable -import com.open_transit.api.models.* import java.util.Objects import java.util.Optional +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable +import org.onebusaway.models.* class TripsForRouteListParams constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/TripsForRouteListResponse.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/TripsForRouteListResponse.kt similarity index 99% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/TripsForRouteListResponse.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/TripsForRouteListResponse.kt index fc7e9c5..9dd1dcb 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/TripsForRouteListResponse.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/TripsForRouteListResponse.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models import com.fasterxml.jackson.annotation.JsonAnyGetter import com.fasterxml.jackson.annotation.JsonAnySetter import com.fasterxml.jackson.annotation.JsonProperty import com.fasterxml.jackson.databind.annotation.JsonDeserialize -import com.open_transit.api.core.ExcludeMissing -import com.open_transit.api.core.JsonField -import com.open_transit.api.core.JsonMissing -import com.open_transit.api.core.JsonValue -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable import java.util.Objects import java.util.Optional +import org.onebusaway.core.ExcludeMissing +import org.onebusaway.core.JsonField +import org.onebusaway.core.JsonMissing +import org.onebusaway.core.JsonValue +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable @JsonDeserialize(builder = TripsForRouteListResponse.Builder::class) @NoAutoDetect diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/VehiclesForAgencyListParams.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/VehiclesForAgencyListParams.kt similarity index 96% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/VehiclesForAgencyListParams.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/VehiclesForAgencyListParams.kt index 3d9f183..dd8c509 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/VehiclesForAgencyListParams.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/VehiclesForAgencyListParams.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable -import com.open_transit.api.models.* import java.util.Objects import java.util.Optional +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable +import org.onebusaway.models.* class VehiclesForAgencyListParams constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/VehiclesForAgencyListResponse.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/VehiclesForAgencyListResponse.kt similarity index 99% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/VehiclesForAgencyListResponse.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/VehiclesForAgencyListResponse.kt index 22a9a6b..0b78ada 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/models/VehiclesForAgencyListResponse.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/VehiclesForAgencyListResponse.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models import com.fasterxml.jackson.annotation.JsonAnyGetter import com.fasterxml.jackson.annotation.JsonAnySetter import com.fasterxml.jackson.annotation.JsonProperty import com.fasterxml.jackson.databind.annotation.JsonDeserialize -import com.open_transit.api.core.ExcludeMissing -import com.open_transit.api.core.JsonField -import com.open_transit.api.core.JsonMissing -import com.open_transit.api.core.JsonValue -import com.open_transit.api.core.NoAutoDetect -import com.open_transit.api.core.toUnmodifiable import java.util.Objects import java.util.Optional +import org.onebusaway.core.ExcludeMissing +import org.onebusaway.core.JsonField +import org.onebusaway.core.JsonMissing +import org.onebusaway.core.JsonValue +import org.onebusaway.core.NoAutoDetect +import org.onebusaway.core.toUnmodifiable @JsonDeserialize(builder = VehiclesForAgencyListResponse.Builder::class) @NoAutoDetect diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/Handlers.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/Handlers.kt similarity index 88% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/Handlers.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/Handlers.kt index 93c133e..324796f 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/Handlers.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/Handlers.kt @@ -1,27 +1,27 @@ @file:JvmName("Handlers") -package com.open_transit.api.services +package org.onebusaway.services import com.fasterxml.jackson.databind.json.JsonMapper import com.fasterxml.jackson.module.kotlin.jacksonTypeRef import com.google.common.collect.ListMultimap -import com.open_transit.api.core.http.BinaryResponseContent -import com.open_transit.api.core.http.HttpResponse -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.BadRequestException -import com.open_transit.api.errors.InternalServerException -import com.open_transit.api.errors.NotFoundException -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.errors.OnebusawaySdkException -import com.open_transit.api.errors.PermissionDeniedException -import com.open_transit.api.errors.RateLimitException -import com.open_transit.api.errors.UnauthorizedException -import com.open_transit.api.errors.UnexpectedStatusCodeException -import com.open_transit.api.errors.UnprocessableEntityException import java.io.ByteArrayInputStream import java.io.InputStream import java.io.OutputStream import java.util.Optional +import org.onebusaway.core.http.BinaryResponseContent +import org.onebusaway.core.http.HttpResponse +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.BadRequestException +import org.onebusaway.errors.InternalServerException +import org.onebusaway.errors.NotFoundException +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.errors.OnebusawaySdkException +import org.onebusaway.errors.PermissionDeniedException +import org.onebusaway.errors.RateLimitException +import org.onebusaway.errors.UnauthorizedException +import org.onebusaway.errors.UnexpectedStatusCodeException +import org.onebusaway.errors.UnprocessableEntityException @JvmSynthetic internal fun emptyHandler(): Handler = EmptyHandler diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/HttpRequestBodies.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/HttpRequestBodies.kt similarity index 92% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/HttpRequestBodies.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/HttpRequestBodies.kt index 6ddbccf..e25d2f8 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/HttpRequestBodies.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/HttpRequestBodies.kt @@ -1,16 +1,16 @@ @file:JvmName("HttpRequestBodies") -package com.open_transit.api.services +package org.onebusaway.services import com.fasterxml.jackson.databind.json.JsonMapper -import com.open_transit.api.core.Enum -import com.open_transit.api.core.JsonValue -import com.open_transit.api.core.MultipartFormValue -import com.open_transit.api.core.http.HttpRequestBody -import com.open_transit.api.errors.OnebusawaySdkException import java.io.ByteArrayOutputStream import java.io.OutputStream import org.apache.hc.client5.http.entity.mime.MultipartEntityBuilder +import org.onebusaway.core.Enum +import org.onebusaway.core.JsonValue +import org.onebusaway.core.MultipartFormValue +import org.onebusaway.core.http.HttpRequestBody +import org.onebusaway.errors.OnebusawaySdkException @JvmSynthetic internal inline fun json( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/AgenciesWithCoverageServiceAsync.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/AgenciesWithCoverageServiceAsync.kt similarity index 72% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/AgenciesWithCoverageServiceAsync.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/AgenciesWithCoverageServiceAsync.kt index 308b59f..202311d 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/AgenciesWithCoverageServiceAsync.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/AgenciesWithCoverageServiceAsync.kt @@ -2,12 +2,12 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.AgenciesWithCoverageListParams -import com.open_transit.api.models.AgenciesWithCoverageListResponse import java.util.concurrent.CompletableFuture +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.AgenciesWithCoverageListParams +import org.onebusaway.models.AgenciesWithCoverageListResponse interface AgenciesWithCoverageServiceAsync { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/AgenciesWithCoverageServiceAsyncImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/AgenciesWithCoverageServiceAsyncImpl.kt similarity index 72% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/AgenciesWithCoverageServiceAsyncImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/AgenciesWithCoverageServiceAsyncImpl.kt index 81b96e1..2446a0d 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/AgenciesWithCoverageServiceAsyncImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/AgenciesWithCoverageServiceAsyncImpl.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.AgenciesWithCoverageListParams -import com.open_transit.api.models.AgenciesWithCoverageListResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler import java.util.concurrent.CompletableFuture +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.AgenciesWithCoverageListParams +import org.onebusaway.models.AgenciesWithCoverageListResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class AgenciesWithCoverageServiceAsyncImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/AgencyServiceAsync.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/AgencyServiceAsync.kt similarity index 71% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/AgencyServiceAsync.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/AgencyServiceAsync.kt index f802a61..6520228 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/AgencyServiceAsync.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/AgencyServiceAsync.kt @@ -2,12 +2,12 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.AgencyRetrieveParams -import com.open_transit.api.models.AgencyRetrieveResponse import java.util.concurrent.CompletableFuture +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.AgencyRetrieveParams +import org.onebusaway.models.AgencyRetrieveResponse interface AgencyServiceAsync { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/AgencyServiceAsyncImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/AgencyServiceAsyncImpl.kt similarity index 71% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/AgencyServiceAsyncImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/AgencyServiceAsyncImpl.kt index ab940c2..2867fb4 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/AgencyServiceAsyncImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/AgencyServiceAsyncImpl.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.AgencyRetrieveParams -import com.open_transit.api.models.AgencyRetrieveResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler import java.util.concurrent.CompletableFuture +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.AgencyRetrieveParams +import org.onebusaway.models.AgencyRetrieveResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class AgencyServiceAsyncImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ArrivalAndDepartureServiceAsync.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ArrivalAndDepartureServiceAsync.kt similarity index 67% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ArrivalAndDepartureServiceAsync.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ArrivalAndDepartureServiceAsync.kt index f872e6c..339e502 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ArrivalAndDepartureServiceAsync.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ArrivalAndDepartureServiceAsync.kt @@ -2,14 +2,14 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.ArrivalAndDepartureListParams -import com.open_transit.api.models.ArrivalAndDepartureListResponse -import com.open_transit.api.models.ArrivalAndDepartureRetrieveParams -import com.open_transit.api.models.ArrivalAndDepartureRetrieveResponse import java.util.concurrent.CompletableFuture +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.ArrivalAndDepartureListParams +import org.onebusaway.models.ArrivalAndDepartureListResponse +import org.onebusaway.models.ArrivalAndDepartureRetrieveParams +import org.onebusaway.models.ArrivalAndDepartureRetrieveResponse interface ArrivalAndDepartureServiceAsync { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ArrivalAndDepartureServiceAsyncImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ArrivalAndDepartureServiceAsyncImpl.kt similarity index 79% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ArrivalAndDepartureServiceAsyncImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ArrivalAndDepartureServiceAsyncImpl.kt index e1ee6ad..9899b7c 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ArrivalAndDepartureServiceAsyncImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ArrivalAndDepartureServiceAsyncImpl.kt @@ -1,21 +1,21 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.ArrivalAndDepartureListParams -import com.open_transit.api.models.ArrivalAndDepartureListResponse -import com.open_transit.api.models.ArrivalAndDepartureRetrieveParams -import com.open_transit.api.models.ArrivalAndDepartureRetrieveResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler import java.util.concurrent.CompletableFuture +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.ArrivalAndDepartureListParams +import org.onebusaway.models.ArrivalAndDepartureListResponse +import org.onebusaway.models.ArrivalAndDepartureRetrieveParams +import org.onebusaway.models.ArrivalAndDepartureRetrieveResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class ArrivalAndDepartureServiceAsyncImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/BlockServiceAsync.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/BlockServiceAsync.kt similarity index 69% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/BlockServiceAsync.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/BlockServiceAsync.kt index 3f0e064..8d2afda 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/BlockServiceAsync.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/BlockServiceAsync.kt @@ -2,12 +2,12 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.BlockRetrieveParams -import com.open_transit.api.models.BlockRetrieveResponse import java.util.concurrent.CompletableFuture +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.BlockRetrieveParams +import org.onebusaway.models.BlockRetrieveResponse interface BlockServiceAsync { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/BlockServiceAsyncImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/BlockServiceAsyncImpl.kt similarity index 71% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/BlockServiceAsyncImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/BlockServiceAsyncImpl.kt index a3df335..0175f63 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/BlockServiceAsyncImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/BlockServiceAsyncImpl.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.BlockRetrieveParams -import com.open_transit.api.models.BlockRetrieveResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler import java.util.concurrent.CompletableFuture +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.BlockRetrieveParams +import org.onebusaway.models.BlockRetrieveResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class BlockServiceAsyncImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ConfigServiceAsync.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ConfigServiceAsync.kt similarity index 67% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ConfigServiceAsync.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ConfigServiceAsync.kt index da4fae3..79530a4 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ConfigServiceAsync.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ConfigServiceAsync.kt @@ -2,12 +2,12 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.ConfigRetrieveParams -import com.open_transit.api.models.ConfigRetrieveResponse import java.util.concurrent.CompletableFuture +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.ConfigRetrieveParams +import org.onebusaway.models.ConfigRetrieveResponse interface ConfigServiceAsync { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ConfigServiceAsyncImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ConfigServiceAsyncImpl.kt similarity index 70% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ConfigServiceAsyncImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ConfigServiceAsyncImpl.kt index 86b3467..5178a39 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ConfigServiceAsyncImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ConfigServiceAsyncImpl.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.ConfigRetrieveParams -import com.open_transit.api.models.ConfigRetrieveResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler import java.util.concurrent.CompletableFuture +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.ConfigRetrieveParams +import org.onebusaway.models.ConfigRetrieveResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class ConfigServiceAsyncImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/CurrentTimeServiceAsync.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/CurrentTimeServiceAsync.kt similarity index 67% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/CurrentTimeServiceAsync.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/CurrentTimeServiceAsync.kt index 0be765a..c26d89d 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/CurrentTimeServiceAsync.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/CurrentTimeServiceAsync.kt @@ -2,12 +2,12 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.CurrentTimeRetrieveParams -import com.open_transit.api.models.CurrentTimeRetrieveResponse import java.util.concurrent.CompletableFuture +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.CurrentTimeRetrieveParams +import org.onebusaway.models.CurrentTimeRetrieveResponse interface CurrentTimeServiceAsync { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/CurrentTimeServiceAsyncImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/CurrentTimeServiceAsyncImpl.kt similarity index 70% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/CurrentTimeServiceAsyncImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/CurrentTimeServiceAsyncImpl.kt index 1174fcf..8ac708d 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/CurrentTimeServiceAsyncImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/CurrentTimeServiceAsyncImpl.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.CurrentTimeRetrieveParams -import com.open_transit.api.models.CurrentTimeRetrieveResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler import java.util.concurrent.CompletableFuture +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.CurrentTimeRetrieveParams +import org.onebusaway.models.CurrentTimeRetrieveResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class CurrentTimeServiceAsyncImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ReportProblemWithStopServiceAsync.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ReportProblemWithStopServiceAsync.kt similarity index 69% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ReportProblemWithStopServiceAsync.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ReportProblemWithStopServiceAsync.kt index 3ac10b0..718bef1 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ReportProblemWithStopServiceAsync.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ReportProblemWithStopServiceAsync.kt @@ -2,12 +2,12 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.ReportProblemWithStopRetrieveParams -import com.open_transit.api.models.ResponseWrapper import java.util.concurrent.CompletableFuture +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.ReportProblemWithStopRetrieveParams +import org.onebusaway.models.ResponseWrapper interface ReportProblemWithStopServiceAsync { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ReportProblemWithStopServiceAsyncImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ReportProblemWithStopServiceAsyncImpl.kt similarity index 71% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ReportProblemWithStopServiceAsyncImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ReportProblemWithStopServiceAsyncImpl.kt index 3c826cd..080e70e 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ReportProblemWithStopServiceAsyncImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ReportProblemWithStopServiceAsyncImpl.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.ReportProblemWithStopRetrieveParams -import com.open_transit.api.models.ResponseWrapper -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler import java.util.concurrent.CompletableFuture +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.ReportProblemWithStopRetrieveParams +import org.onebusaway.models.ResponseWrapper +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class ReportProblemWithStopServiceAsyncImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ReportProblemWithTripServiceAsync.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ReportProblemWithTripServiceAsync.kt similarity index 70% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ReportProblemWithTripServiceAsync.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ReportProblemWithTripServiceAsync.kt index dd03cd1..851e7d1 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ReportProblemWithTripServiceAsync.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ReportProblemWithTripServiceAsync.kt @@ -2,12 +2,12 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.ReportProblemWithTripRetrieveParams -import com.open_transit.api.models.ResponseWrapper import java.util.concurrent.CompletableFuture +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.ReportProblemWithTripRetrieveParams +import org.onebusaway.models.ResponseWrapper interface ReportProblemWithTripServiceAsync { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ReportProblemWithTripServiceAsyncImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ReportProblemWithTripServiceAsyncImpl.kt similarity index 71% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ReportProblemWithTripServiceAsyncImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ReportProblemWithTripServiceAsyncImpl.kt index 696e990..e6d5c75 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ReportProblemWithTripServiceAsyncImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ReportProblemWithTripServiceAsyncImpl.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.ReportProblemWithTripRetrieveParams -import com.open_transit.api.models.ResponseWrapper -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler import java.util.concurrent.CompletableFuture +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.ReportProblemWithTripRetrieveParams +import org.onebusaway.models.ResponseWrapper +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class ReportProblemWithTripServiceAsyncImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/RouteIdsForAgencyServiceAsync.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/RouteIdsForAgencyServiceAsync.kt similarity index 68% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/RouteIdsForAgencyServiceAsync.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/RouteIdsForAgencyServiceAsync.kt index 915df09..e42ee2c 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/RouteIdsForAgencyServiceAsync.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/RouteIdsForAgencyServiceAsync.kt @@ -2,12 +2,12 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.RouteIdsForAgencyListParams -import com.open_transit.api.models.RouteIdsForAgencyListResponse import java.util.concurrent.CompletableFuture +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.RouteIdsForAgencyListParams +import org.onebusaway.models.RouteIdsForAgencyListResponse interface RouteIdsForAgencyServiceAsync { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/RouteIdsForAgencyServiceAsyncImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/RouteIdsForAgencyServiceAsyncImpl.kt similarity index 71% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/RouteIdsForAgencyServiceAsyncImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/RouteIdsForAgencyServiceAsyncImpl.kt index 0a3281b..262e4f3 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/RouteIdsForAgencyServiceAsyncImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/RouteIdsForAgencyServiceAsyncImpl.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.RouteIdsForAgencyListParams -import com.open_transit.api.models.RouteIdsForAgencyListResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler import java.util.concurrent.CompletableFuture +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.RouteIdsForAgencyListParams +import org.onebusaway.models.RouteIdsForAgencyListResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class RouteIdsForAgencyServiceAsyncImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/RouteServiceAsync.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/RouteServiceAsync.kt similarity index 70% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/RouteServiceAsync.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/RouteServiceAsync.kt index 8d73b6f..d13343c 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/RouteServiceAsync.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/RouteServiceAsync.kt @@ -2,12 +2,12 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.RouteRetrieveParams -import com.open_transit.api.models.RouteRetrieveResponse import java.util.concurrent.CompletableFuture +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.RouteRetrieveParams +import org.onebusaway.models.RouteRetrieveResponse interface RouteServiceAsync { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/RouteServiceAsyncImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/RouteServiceAsyncImpl.kt similarity index 71% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/RouteServiceAsyncImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/RouteServiceAsyncImpl.kt index d8671a5..4eadd48 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/RouteServiceAsyncImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/RouteServiceAsyncImpl.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.RouteRetrieveParams -import com.open_transit.api.models.RouteRetrieveResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler import java.util.concurrent.CompletableFuture +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.RouteRetrieveParams +import org.onebusaway.models.RouteRetrieveResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class RouteServiceAsyncImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/RoutesForAgencyServiceAsync.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/RoutesForAgencyServiceAsync.kt similarity index 69% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/RoutesForAgencyServiceAsync.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/RoutesForAgencyServiceAsync.kt index c31876b..91ad8aa 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/RoutesForAgencyServiceAsync.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/RoutesForAgencyServiceAsync.kt @@ -2,12 +2,12 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.RoutesForAgencyListParams -import com.open_transit.api.models.RoutesForAgencyListResponse import java.util.concurrent.CompletableFuture +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.RoutesForAgencyListParams +import org.onebusaway.models.RoutesForAgencyListResponse interface RoutesForAgencyServiceAsync { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/RoutesForAgencyServiceAsyncImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/RoutesForAgencyServiceAsyncImpl.kt similarity index 71% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/RoutesForAgencyServiceAsyncImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/RoutesForAgencyServiceAsyncImpl.kt index 88f179f..15c34e9 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/RoutesForAgencyServiceAsyncImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/RoutesForAgencyServiceAsyncImpl.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.RoutesForAgencyListParams -import com.open_transit.api.models.RoutesForAgencyListResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler import java.util.concurrent.CompletableFuture +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.RoutesForAgencyListParams +import org.onebusaway.models.RoutesForAgencyListResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class RoutesForAgencyServiceAsyncImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/RoutesForLocationServiceAsync.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/RoutesForLocationServiceAsync.kt similarity index 67% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/RoutesForLocationServiceAsync.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/RoutesForLocationServiceAsync.kt index fcf99a2..daad3e3 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/RoutesForLocationServiceAsync.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/RoutesForLocationServiceAsync.kt @@ -2,12 +2,12 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.RoutesForLocationListParams -import com.open_transit.api.models.RoutesForLocationListResponse import java.util.concurrent.CompletableFuture +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.RoutesForLocationListParams +import org.onebusaway.models.RoutesForLocationListResponse interface RoutesForLocationServiceAsync { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/RoutesForLocationServiceAsyncImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/RoutesForLocationServiceAsyncImpl.kt similarity index 71% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/RoutesForLocationServiceAsyncImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/RoutesForLocationServiceAsyncImpl.kt index abb5ff8..b736020 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/RoutesForLocationServiceAsyncImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/RoutesForLocationServiceAsyncImpl.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.RoutesForLocationListParams -import com.open_transit.api.models.RoutesForLocationListResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler import java.util.concurrent.CompletableFuture +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.RoutesForLocationListParams +import org.onebusaway.models.RoutesForLocationListResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class RoutesForLocationServiceAsyncImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ScheduleForRouteServiceAsync.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ScheduleForRouteServiceAsync.kt similarity index 69% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ScheduleForRouteServiceAsync.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ScheduleForRouteServiceAsync.kt index b66a589..2bd92f9 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ScheduleForRouteServiceAsync.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ScheduleForRouteServiceAsync.kt @@ -2,12 +2,12 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.ScheduleForRouteRetrieveParams -import com.open_transit.api.models.ScheduleForRouteRetrieveResponse import java.util.concurrent.CompletableFuture +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.ScheduleForRouteRetrieveParams +import org.onebusaway.models.ScheduleForRouteRetrieveResponse interface ScheduleForRouteServiceAsync { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ScheduleForRouteServiceAsyncImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ScheduleForRouteServiceAsyncImpl.kt similarity index 71% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ScheduleForRouteServiceAsyncImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ScheduleForRouteServiceAsyncImpl.kt index bc41d41..94c328e 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ScheduleForRouteServiceAsyncImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ScheduleForRouteServiceAsyncImpl.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.ScheduleForRouteRetrieveParams -import com.open_transit.api.models.ScheduleForRouteRetrieveResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler import java.util.concurrent.CompletableFuture +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.ScheduleForRouteRetrieveParams +import org.onebusaway.models.ScheduleForRouteRetrieveResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class ScheduleForRouteServiceAsyncImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ScheduleForStopServiceAsync.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ScheduleForStopServiceAsync.kt similarity index 68% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ScheduleForStopServiceAsync.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ScheduleForStopServiceAsync.kt index fb28f9a..d553c5c 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ScheduleForStopServiceAsync.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ScheduleForStopServiceAsync.kt @@ -2,12 +2,12 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.ScheduleForStopRetrieveParams -import com.open_transit.api.models.ScheduleForStopRetrieveResponse import java.util.concurrent.CompletableFuture +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.ScheduleForStopRetrieveParams +import org.onebusaway.models.ScheduleForStopRetrieveResponse interface ScheduleForStopServiceAsync { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ScheduleForStopServiceAsyncImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ScheduleForStopServiceAsyncImpl.kt similarity index 71% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ScheduleForStopServiceAsyncImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ScheduleForStopServiceAsyncImpl.kt index 9b0422e..9b48a01 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ScheduleForStopServiceAsyncImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ScheduleForStopServiceAsyncImpl.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.ScheduleForStopRetrieveParams -import com.open_transit.api.models.ScheduleForStopRetrieveResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler import java.util.concurrent.CompletableFuture +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.ScheduleForStopRetrieveParams +import org.onebusaway.models.ScheduleForStopRetrieveResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class ScheduleForStopServiceAsyncImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/SearchForRouteServiceAsync.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/SearchForRouteServiceAsync.kt similarity index 68% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/SearchForRouteServiceAsync.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/SearchForRouteServiceAsync.kt index 56bff43..d63a5d4 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/SearchForRouteServiceAsync.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/SearchForRouteServiceAsync.kt @@ -2,12 +2,12 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.SearchForRouteListParams -import com.open_transit.api.models.SearchForRouteListResponse import java.util.concurrent.CompletableFuture +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.SearchForRouteListParams +import org.onebusaway.models.SearchForRouteListResponse interface SearchForRouteServiceAsync { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/SearchForRouteServiceAsyncImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/SearchForRouteServiceAsyncImpl.kt similarity index 71% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/SearchForRouteServiceAsyncImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/SearchForRouteServiceAsyncImpl.kt index c4854d2..5ef1339 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/SearchForRouteServiceAsyncImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/SearchForRouteServiceAsyncImpl.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.SearchForRouteListParams -import com.open_transit.api.models.SearchForRouteListResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler import java.util.concurrent.CompletableFuture +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.SearchForRouteListParams +import org.onebusaway.models.SearchForRouteListResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class SearchForRouteServiceAsyncImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/SearchForStopServiceAsync.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/SearchForStopServiceAsync.kt similarity index 69% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/SearchForStopServiceAsync.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/SearchForStopServiceAsync.kt index ba84034..31d27f4 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/SearchForStopServiceAsync.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/SearchForStopServiceAsync.kt @@ -2,12 +2,12 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.SearchForStopListParams -import com.open_transit.api.models.SearchForStopListResponse import java.util.concurrent.CompletableFuture +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.SearchForStopListParams +import org.onebusaway.models.SearchForStopListResponse interface SearchForStopServiceAsync { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/SearchForStopServiceAsyncImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/SearchForStopServiceAsyncImpl.kt similarity index 71% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/SearchForStopServiceAsyncImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/SearchForStopServiceAsyncImpl.kt index 99b42dd..2512ff2 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/SearchForStopServiceAsyncImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/SearchForStopServiceAsyncImpl.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.SearchForStopListParams -import com.open_transit.api.models.SearchForStopListResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler import java.util.concurrent.CompletableFuture +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.SearchForStopListParams +import org.onebusaway.models.SearchForStopListResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class SearchForStopServiceAsyncImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ShapeServiceAsync.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ShapeServiceAsync.kt similarity index 70% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ShapeServiceAsync.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ShapeServiceAsync.kt index 96353d2..ba76e9a 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ShapeServiceAsync.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ShapeServiceAsync.kt @@ -2,12 +2,12 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.ShapeRetrieveParams -import com.open_transit.api.models.ShapeRetrieveResponse import java.util.concurrent.CompletableFuture +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.ShapeRetrieveParams +import org.onebusaway.models.ShapeRetrieveResponse interface ShapeServiceAsync { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ShapeServiceAsyncImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ShapeServiceAsyncImpl.kt similarity index 71% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ShapeServiceAsyncImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ShapeServiceAsyncImpl.kt index 830572c..a8e9800 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/ShapeServiceAsyncImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/ShapeServiceAsyncImpl.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.ShapeRetrieveParams -import com.open_transit.api.models.ShapeRetrieveResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler import java.util.concurrent.CompletableFuture +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.ShapeRetrieveParams +import org.onebusaway.models.ShapeRetrieveResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class ShapeServiceAsyncImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/StopIdsForAgencyServiceAsync.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/StopIdsForAgencyServiceAsync.kt similarity index 68% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/StopIdsForAgencyServiceAsync.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/StopIdsForAgencyServiceAsync.kt index 3878b64..5302c4f 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/StopIdsForAgencyServiceAsync.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/StopIdsForAgencyServiceAsync.kt @@ -2,12 +2,12 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.StopIdsForAgencyListParams -import com.open_transit.api.models.StopIdsForAgencyListResponse import java.util.concurrent.CompletableFuture +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.StopIdsForAgencyListParams +import org.onebusaway.models.StopIdsForAgencyListResponse interface StopIdsForAgencyServiceAsync { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/StopIdsForAgencyServiceAsyncImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/StopIdsForAgencyServiceAsyncImpl.kt similarity index 71% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/StopIdsForAgencyServiceAsyncImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/StopIdsForAgencyServiceAsyncImpl.kt index 7f0230c..86677c6 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/StopIdsForAgencyServiceAsyncImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/StopIdsForAgencyServiceAsyncImpl.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.StopIdsForAgencyListParams -import com.open_transit.api.models.StopIdsForAgencyListResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler import java.util.concurrent.CompletableFuture +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.StopIdsForAgencyListParams +import org.onebusaway.models.StopIdsForAgencyListResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class StopIdsForAgencyServiceAsyncImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/StopServiceAsync.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/StopServiceAsync.kt similarity index 69% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/StopServiceAsync.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/StopServiceAsync.kt index dbdcfee..477416b 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/StopServiceAsync.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/StopServiceAsync.kt @@ -2,12 +2,12 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.StopRetrieveParams -import com.open_transit.api.models.StopRetrieveResponse import java.util.concurrent.CompletableFuture +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.StopRetrieveParams +import org.onebusaway.models.StopRetrieveResponse interface StopServiceAsync { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/StopServiceAsyncImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/StopServiceAsyncImpl.kt similarity index 70% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/StopServiceAsyncImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/StopServiceAsyncImpl.kt index ed89ca8..8d08c6b 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/StopServiceAsyncImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/StopServiceAsyncImpl.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.StopRetrieveParams -import com.open_transit.api.models.StopRetrieveResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler import java.util.concurrent.CompletableFuture +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.StopRetrieveParams +import org.onebusaway.models.StopRetrieveResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class StopServiceAsyncImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/StopsForLocationServiceAsync.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/StopsForLocationServiceAsync.kt similarity index 67% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/StopsForLocationServiceAsync.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/StopsForLocationServiceAsync.kt index 3115a45..18f1776 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/StopsForLocationServiceAsync.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/StopsForLocationServiceAsync.kt @@ -2,12 +2,12 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.StopsForLocationListParams -import com.open_transit.api.models.StopsForLocationListResponse import java.util.concurrent.CompletableFuture +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.StopsForLocationListParams +import org.onebusaway.models.StopsForLocationListResponse interface StopsForLocationServiceAsync { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/StopsForLocationServiceAsyncImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/StopsForLocationServiceAsyncImpl.kt similarity index 71% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/StopsForLocationServiceAsyncImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/StopsForLocationServiceAsyncImpl.kt index a8a73b4..bcf7e51 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/StopsForLocationServiceAsyncImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/StopsForLocationServiceAsyncImpl.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.StopsForLocationListParams -import com.open_transit.api.models.StopsForLocationListResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler import java.util.concurrent.CompletableFuture +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.StopsForLocationListParams +import org.onebusaway.models.StopsForLocationListResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class StopsForLocationServiceAsyncImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/StopsForRouteServiceAsync.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/StopsForRouteServiceAsync.kt similarity index 68% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/StopsForRouteServiceAsync.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/StopsForRouteServiceAsync.kt index 0fb7532..21a4d17 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/StopsForRouteServiceAsync.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/StopsForRouteServiceAsync.kt @@ -2,12 +2,12 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.StopsForRouteListParams -import com.open_transit.api.models.StopsForRouteListResponse import java.util.concurrent.CompletableFuture +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.StopsForRouteListParams +import org.onebusaway.models.StopsForRouteListResponse interface StopsForRouteServiceAsync { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/StopsForRouteServiceAsyncImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/StopsForRouteServiceAsyncImpl.kt similarity index 71% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/StopsForRouteServiceAsyncImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/StopsForRouteServiceAsyncImpl.kt index 2190ed7..8b3b43c 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/StopsForRouteServiceAsyncImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/StopsForRouteServiceAsyncImpl.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.StopsForRouteListParams -import com.open_transit.api.models.StopsForRouteListResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler import java.util.concurrent.CompletableFuture +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.StopsForRouteListParams +import org.onebusaway.models.StopsForRouteListResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class StopsForRouteServiceAsyncImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/TripDetailServiceAsync.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/TripDetailServiceAsync.kt similarity index 68% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/TripDetailServiceAsync.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/TripDetailServiceAsync.kt index bf8a69b..9ba625f 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/TripDetailServiceAsync.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/TripDetailServiceAsync.kt @@ -2,12 +2,12 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.TripDetailRetrieveParams -import com.open_transit.api.models.TripDetailRetrieveResponse import java.util.concurrent.CompletableFuture +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.TripDetailRetrieveParams +import org.onebusaway.models.TripDetailRetrieveResponse interface TripDetailServiceAsync { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/TripDetailServiceAsyncImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/TripDetailServiceAsyncImpl.kt similarity index 71% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/TripDetailServiceAsyncImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/TripDetailServiceAsyncImpl.kt index 5b39d92..1262dbf 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/TripDetailServiceAsyncImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/TripDetailServiceAsyncImpl.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.TripDetailRetrieveParams -import com.open_transit.api.models.TripDetailRetrieveResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler import java.util.concurrent.CompletableFuture +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.TripDetailRetrieveParams +import org.onebusaway.models.TripDetailRetrieveResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class TripDetailServiceAsyncImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/TripForVehicleServiceAsync.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/TripForVehicleServiceAsync.kt similarity index 68% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/TripForVehicleServiceAsync.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/TripForVehicleServiceAsync.kt index 27222af..c5cccd9 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/TripForVehicleServiceAsync.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/TripForVehicleServiceAsync.kt @@ -2,12 +2,12 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.TripForVehicleRetrieveParams -import com.open_transit.api.models.TripForVehicleRetrieveResponse import java.util.concurrent.CompletableFuture +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.TripForVehicleRetrieveParams +import org.onebusaway.models.TripForVehicleRetrieveResponse interface TripForVehicleServiceAsync { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/TripForVehicleServiceAsyncImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/TripForVehicleServiceAsyncImpl.kt similarity index 71% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/TripForVehicleServiceAsyncImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/TripForVehicleServiceAsyncImpl.kt index 961fb1e..80cf415 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/TripForVehicleServiceAsyncImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/TripForVehicleServiceAsyncImpl.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.TripForVehicleRetrieveParams -import com.open_transit.api.models.TripForVehicleRetrieveResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler import java.util.concurrent.CompletableFuture +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.TripForVehicleRetrieveParams +import org.onebusaway.models.TripForVehicleRetrieveResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class TripForVehicleServiceAsyncImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/TripServiceAsync.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/TripServiceAsync.kt similarity index 69% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/TripServiceAsync.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/TripServiceAsync.kt index 6643ee6..f6695da 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/TripServiceAsync.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/TripServiceAsync.kt @@ -2,12 +2,12 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.TripRetrieveParams -import com.open_transit.api.models.TripRetrieveResponse import java.util.concurrent.CompletableFuture +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.TripRetrieveParams +import org.onebusaway.models.TripRetrieveResponse interface TripServiceAsync { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/TripServiceAsyncImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/TripServiceAsyncImpl.kt similarity index 70% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/TripServiceAsyncImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/TripServiceAsyncImpl.kt index 9cec502..53826ac 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/TripServiceAsyncImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/TripServiceAsyncImpl.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.TripRetrieveParams -import com.open_transit.api.models.TripRetrieveResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler import java.util.concurrent.CompletableFuture +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.TripRetrieveParams +import org.onebusaway.models.TripRetrieveResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class TripServiceAsyncImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/TripsForLocationServiceAsync.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/TripsForLocationServiceAsync.kt similarity index 68% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/TripsForLocationServiceAsync.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/TripsForLocationServiceAsync.kt index 7026f97..5d82f61 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/TripsForLocationServiceAsync.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/TripsForLocationServiceAsync.kt @@ -2,12 +2,12 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.TripsForLocationListParams -import com.open_transit.api.models.TripsForLocationListResponse import java.util.concurrent.CompletableFuture +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.TripsForLocationListParams +import org.onebusaway.models.TripsForLocationListResponse interface TripsForLocationServiceAsync { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/TripsForLocationServiceAsyncImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/TripsForLocationServiceAsyncImpl.kt similarity index 71% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/TripsForLocationServiceAsyncImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/TripsForLocationServiceAsyncImpl.kt index 41050b2..9867e2f 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/TripsForLocationServiceAsyncImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/TripsForLocationServiceAsyncImpl.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.TripsForLocationListParams -import com.open_transit.api.models.TripsForLocationListResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler import java.util.concurrent.CompletableFuture +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.TripsForLocationListParams +import org.onebusaway.models.TripsForLocationListResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class TripsForLocationServiceAsyncImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/TripsForRouteServiceAsync.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/TripsForRouteServiceAsync.kt similarity index 69% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/TripsForRouteServiceAsync.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/TripsForRouteServiceAsync.kt index 8d088b8..5f8f848 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/TripsForRouteServiceAsync.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/TripsForRouteServiceAsync.kt @@ -2,12 +2,12 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.TripsForRouteListParams -import com.open_transit.api.models.TripsForRouteListResponse import java.util.concurrent.CompletableFuture +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.TripsForRouteListParams +import org.onebusaway.models.TripsForRouteListResponse interface TripsForRouteServiceAsync { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/TripsForRouteServiceAsyncImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/TripsForRouteServiceAsyncImpl.kt similarity index 71% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/TripsForRouteServiceAsyncImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/TripsForRouteServiceAsyncImpl.kt index ae829db..8a40bc1 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/TripsForRouteServiceAsyncImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/TripsForRouteServiceAsyncImpl.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.TripsForRouteListParams -import com.open_transit.api.models.TripsForRouteListResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler import java.util.concurrent.CompletableFuture +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.TripsForRouteListParams +import org.onebusaway.models.TripsForRouteListResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class TripsForRouteServiceAsyncImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/VehiclesForAgencyServiceAsync.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/VehiclesForAgencyServiceAsync.kt similarity index 68% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/VehiclesForAgencyServiceAsync.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/VehiclesForAgencyServiceAsync.kt index 03395e1..f24836a 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/VehiclesForAgencyServiceAsync.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/VehiclesForAgencyServiceAsync.kt @@ -2,12 +2,12 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.VehiclesForAgencyListParams -import com.open_transit.api.models.VehiclesForAgencyListResponse import java.util.concurrent.CompletableFuture +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.VehiclesForAgencyListParams +import org.onebusaway.models.VehiclesForAgencyListResponse interface VehiclesForAgencyServiceAsync { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/VehiclesForAgencyServiceAsyncImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/VehiclesForAgencyServiceAsyncImpl.kt similarity index 71% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/VehiclesForAgencyServiceAsyncImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/VehiclesForAgencyServiceAsyncImpl.kt index 8c4090e..16ece53 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/async/VehiclesForAgencyServiceAsyncImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/async/VehiclesForAgencyServiceAsyncImpl.kt @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.async +package org.onebusaway.services.async -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.VehiclesForAgencyListParams -import com.open_transit.api.models.VehiclesForAgencyListResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler import java.util.concurrent.CompletableFuture +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.VehiclesForAgencyListParams +import org.onebusaway.models.VehiclesForAgencyListResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class VehiclesForAgencyServiceAsyncImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/AgenciesWithCoverageService.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/AgenciesWithCoverageService.kt similarity index 69% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/AgenciesWithCoverageService.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/AgenciesWithCoverageService.kt index a0accb9..8e54c10 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/AgenciesWithCoverageService.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/AgenciesWithCoverageService.kt @@ -2,11 +2,11 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.AgenciesWithCoverageListParams -import com.open_transit.api.models.AgenciesWithCoverageListResponse +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.AgenciesWithCoverageListParams +import org.onebusaway.models.AgenciesWithCoverageListResponse interface AgenciesWithCoverageService { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/AgenciesWithCoverageServiceImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/AgenciesWithCoverageServiceImpl.kt similarity index 71% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/AgenciesWithCoverageServiceImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/AgenciesWithCoverageServiceImpl.kt index f2ff225..6949e30 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/AgenciesWithCoverageServiceImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/AgenciesWithCoverageServiceImpl.kt @@ -1,18 +1,18 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.AgenciesWithCoverageListParams -import com.open_transit.api.models.AgenciesWithCoverageListResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.AgenciesWithCoverageListParams +import org.onebusaway.models.AgenciesWithCoverageListResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class AgenciesWithCoverageServiceImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/AgencyService.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/AgencyService.kt similarity index 67% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/AgencyService.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/AgencyService.kt index 7a70fdb..33676cb 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/AgencyService.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/AgencyService.kt @@ -2,11 +2,11 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.AgencyRetrieveParams -import com.open_transit.api.models.AgencyRetrieveResponse +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.AgencyRetrieveParams +import org.onebusaway.models.AgencyRetrieveResponse interface AgencyService { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/AgencyServiceImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/AgencyServiceImpl.kt similarity index 70% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/AgencyServiceImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/AgencyServiceImpl.kt index 829e7a7..0e5842b 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/AgencyServiceImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/AgencyServiceImpl.kt @@ -1,18 +1,18 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.AgencyRetrieveParams -import com.open_transit.api.models.AgencyRetrieveResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.AgencyRetrieveParams +import org.onebusaway.models.AgencyRetrieveResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class AgencyServiceImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ArrivalAndDepartureService.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ArrivalAndDepartureService.kt similarity index 64% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ArrivalAndDepartureService.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ArrivalAndDepartureService.kt index a0d0d80..deb29be 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ArrivalAndDepartureService.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ArrivalAndDepartureService.kt @@ -2,13 +2,13 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.ArrivalAndDepartureListParams -import com.open_transit.api.models.ArrivalAndDepartureListResponse -import com.open_transit.api.models.ArrivalAndDepartureRetrieveParams -import com.open_transit.api.models.ArrivalAndDepartureRetrieveResponse +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.ArrivalAndDepartureListParams +import org.onebusaway.models.ArrivalAndDepartureListResponse +import org.onebusaway.models.ArrivalAndDepartureRetrieveParams +import org.onebusaway.models.ArrivalAndDepartureRetrieveResponse interface ArrivalAndDepartureService { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ArrivalAndDepartureServiceImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ArrivalAndDepartureServiceImpl.kt similarity index 78% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ArrivalAndDepartureServiceImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ArrivalAndDepartureServiceImpl.kt index 0bdf9ed..5e01311 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ArrivalAndDepartureServiceImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ArrivalAndDepartureServiceImpl.kt @@ -1,20 +1,20 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.ArrivalAndDepartureListParams -import com.open_transit.api.models.ArrivalAndDepartureListResponse -import com.open_transit.api.models.ArrivalAndDepartureRetrieveParams -import com.open_transit.api.models.ArrivalAndDepartureRetrieveResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.ArrivalAndDepartureListParams +import org.onebusaway.models.ArrivalAndDepartureListResponse +import org.onebusaway.models.ArrivalAndDepartureRetrieveParams +import org.onebusaway.models.ArrivalAndDepartureRetrieveResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class ArrivalAndDepartureServiceImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/BlockService.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/BlockService.kt similarity index 65% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/BlockService.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/BlockService.kt index dbed6f1..850f9e3 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/BlockService.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/BlockService.kt @@ -2,11 +2,11 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.BlockRetrieveParams -import com.open_transit.api.models.BlockRetrieveResponse +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.BlockRetrieveParams +import org.onebusaway.models.BlockRetrieveResponse interface BlockService { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/BlockServiceImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/BlockServiceImpl.kt similarity index 69% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/BlockServiceImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/BlockServiceImpl.kt index 8a87a89..b6af41e 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/BlockServiceImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/BlockServiceImpl.kt @@ -1,18 +1,18 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.BlockRetrieveParams -import com.open_transit.api.models.BlockRetrieveResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.BlockRetrieveParams +import org.onebusaway.models.BlockRetrieveResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class BlockServiceImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ConfigService.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ConfigService.kt similarity index 63% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ConfigService.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ConfigService.kt index 4363e07..b28fab8 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ConfigService.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ConfigService.kt @@ -2,11 +2,11 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.ConfigRetrieveParams -import com.open_transit.api.models.ConfigRetrieveResponse +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.ConfigRetrieveParams +import org.onebusaway.models.ConfigRetrieveResponse interface ConfigService { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ConfigServiceImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ConfigServiceImpl.kt similarity index 68% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ConfigServiceImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ConfigServiceImpl.kt index e701f4b..11bf1de 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ConfigServiceImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ConfigServiceImpl.kt @@ -1,18 +1,18 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.ConfigRetrieveParams -import com.open_transit.api.models.ConfigRetrieveResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.ConfigRetrieveParams +import org.onebusaway.models.ConfigRetrieveResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class ConfigServiceImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/CurrentTimeService.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/CurrentTimeService.kt similarity index 63% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/CurrentTimeService.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/CurrentTimeService.kt index ebb836d..95d6a7c 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/CurrentTimeService.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/CurrentTimeService.kt @@ -2,11 +2,11 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.CurrentTimeRetrieveParams -import com.open_transit.api.models.CurrentTimeRetrieveResponse +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.CurrentTimeRetrieveParams +import org.onebusaway.models.CurrentTimeRetrieveResponse interface CurrentTimeService { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/CurrentTimeServiceImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/CurrentTimeServiceImpl.kt similarity index 69% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/CurrentTimeServiceImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/CurrentTimeServiceImpl.kt index 0682550..c815b68 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/CurrentTimeServiceImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/CurrentTimeServiceImpl.kt @@ -1,18 +1,18 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.CurrentTimeRetrieveParams -import com.open_transit.api.models.CurrentTimeRetrieveResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.CurrentTimeRetrieveParams +import org.onebusaway.models.CurrentTimeRetrieveResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class CurrentTimeServiceImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ReportProblemWithStopService.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ReportProblemWithStopService.kt similarity index 66% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ReportProblemWithStopService.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ReportProblemWithStopService.kt index 058256f..1085081 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ReportProblemWithStopService.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ReportProblemWithStopService.kt @@ -2,11 +2,11 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.ReportProblemWithStopRetrieveParams -import com.open_transit.api.models.ResponseWrapper +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.ReportProblemWithStopRetrieveParams +import org.onebusaway.models.ResponseWrapper interface ReportProblemWithStopService { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ReportProblemWithStopServiceImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ReportProblemWithStopServiceImpl.kt similarity index 70% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ReportProblemWithStopServiceImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ReportProblemWithStopServiceImpl.kt index 2d57142..8550175 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ReportProblemWithStopServiceImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ReportProblemWithStopServiceImpl.kt @@ -1,18 +1,18 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.ReportProblemWithStopRetrieveParams -import com.open_transit.api.models.ResponseWrapper -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.ReportProblemWithStopRetrieveParams +import org.onebusaway.models.ResponseWrapper +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class ReportProblemWithStopServiceImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ReportProblemWithTripService.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ReportProblemWithTripService.kt similarity index 67% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ReportProblemWithTripService.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ReportProblemWithTripService.kt index 4daf43e..d8e2a3d 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ReportProblemWithTripService.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ReportProblemWithTripService.kt @@ -2,11 +2,11 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.ReportProblemWithTripRetrieveParams -import com.open_transit.api.models.ResponseWrapper +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.ReportProblemWithTripRetrieveParams +import org.onebusaway.models.ResponseWrapper interface ReportProblemWithTripService { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ReportProblemWithTripServiceImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ReportProblemWithTripServiceImpl.kt similarity index 70% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ReportProblemWithTripServiceImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ReportProblemWithTripServiceImpl.kt index c914d54..64edf63 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ReportProblemWithTripServiceImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ReportProblemWithTripServiceImpl.kt @@ -1,18 +1,18 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.ReportProblemWithTripRetrieveParams -import com.open_transit.api.models.ResponseWrapper -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.ReportProblemWithTripRetrieveParams +import org.onebusaway.models.ResponseWrapper +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class ReportProblemWithTripServiceImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/RouteIdsForAgencyService.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/RouteIdsForAgencyService.kt similarity index 64% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/RouteIdsForAgencyService.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/RouteIdsForAgencyService.kt index 0db167b..6cd5d26 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/RouteIdsForAgencyService.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/RouteIdsForAgencyService.kt @@ -2,11 +2,11 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.RouteIdsForAgencyListParams -import com.open_transit.api.models.RouteIdsForAgencyListResponse +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.RouteIdsForAgencyListParams +import org.onebusaway.models.RouteIdsForAgencyListResponse interface RouteIdsForAgencyService { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/RouteIdsForAgencyServiceImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/RouteIdsForAgencyServiceImpl.kt similarity index 70% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/RouteIdsForAgencyServiceImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/RouteIdsForAgencyServiceImpl.kt index 3ba6040..6a4f32e 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/RouteIdsForAgencyServiceImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/RouteIdsForAgencyServiceImpl.kt @@ -1,18 +1,18 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.RouteIdsForAgencyListParams -import com.open_transit.api.models.RouteIdsForAgencyListResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.RouteIdsForAgencyListParams +import org.onebusaway.models.RouteIdsForAgencyListResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class RouteIdsForAgencyServiceImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/RouteService.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/RouteService.kt similarity index 67% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/RouteService.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/RouteService.kt index 2fbac7e..705ef38 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/RouteService.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/RouteService.kt @@ -2,11 +2,11 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.RouteRetrieveParams -import com.open_transit.api.models.RouteRetrieveResponse +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.RouteRetrieveParams +import org.onebusaway.models.RouteRetrieveResponse interface RouteService { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/RouteServiceImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/RouteServiceImpl.kt similarity index 70% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/RouteServiceImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/RouteServiceImpl.kt index b995879..a7e2b3c 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/RouteServiceImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/RouteServiceImpl.kt @@ -1,18 +1,18 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.RouteRetrieveParams -import com.open_transit.api.models.RouteRetrieveResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.RouteRetrieveParams +import org.onebusaway.models.RouteRetrieveResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class RouteServiceImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/RoutesForAgencyService.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/RoutesForAgencyService.kt similarity index 66% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/RoutesForAgencyService.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/RoutesForAgencyService.kt index a5733d2..845d40d 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/RoutesForAgencyService.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/RoutesForAgencyService.kt @@ -2,11 +2,11 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.RoutesForAgencyListParams -import com.open_transit.api.models.RoutesForAgencyListResponse +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.RoutesForAgencyListParams +import org.onebusaway.models.RoutesForAgencyListResponse interface RoutesForAgencyService { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/RoutesForAgencyServiceImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/RoutesForAgencyServiceImpl.kt similarity index 70% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/RoutesForAgencyServiceImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/RoutesForAgencyServiceImpl.kt index 4e5c4b1..8601eb6 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/RoutesForAgencyServiceImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/RoutesForAgencyServiceImpl.kt @@ -1,18 +1,18 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.RoutesForAgencyListParams -import com.open_transit.api.models.RoutesForAgencyListResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.RoutesForAgencyListParams +import org.onebusaway.models.RoutesForAgencyListResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class RoutesForAgencyServiceImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/RoutesForLocationService.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/RoutesForLocationService.kt similarity index 64% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/RoutesForLocationService.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/RoutesForLocationService.kt index d258e26..9cecbf9 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/RoutesForLocationService.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/RoutesForLocationService.kt @@ -2,11 +2,11 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.RoutesForLocationListParams -import com.open_transit.api.models.RoutesForLocationListResponse +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.RoutesForLocationListParams +import org.onebusaway.models.RoutesForLocationListResponse interface RoutesForLocationService { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/RoutesForLocationServiceImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/RoutesForLocationServiceImpl.kt similarity index 69% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/RoutesForLocationServiceImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/RoutesForLocationServiceImpl.kt index 3947a3a..37761a2 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/RoutesForLocationServiceImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/RoutesForLocationServiceImpl.kt @@ -1,18 +1,18 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.RoutesForLocationListParams -import com.open_transit.api.models.RoutesForLocationListResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.RoutesForLocationListParams +import org.onebusaway.models.RoutesForLocationListResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class RoutesForLocationServiceImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ScheduleForRouteService.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ScheduleForRouteService.kt similarity index 66% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ScheduleForRouteService.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ScheduleForRouteService.kt index 3e37120..f9a4e1b 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ScheduleForRouteService.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ScheduleForRouteService.kt @@ -2,11 +2,11 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.ScheduleForRouteRetrieveParams -import com.open_transit.api.models.ScheduleForRouteRetrieveResponse +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.ScheduleForRouteRetrieveParams +import org.onebusaway.models.ScheduleForRouteRetrieveResponse interface ScheduleForRouteService { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ScheduleForRouteServiceImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ScheduleForRouteServiceImpl.kt similarity index 70% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ScheduleForRouteServiceImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ScheduleForRouteServiceImpl.kt index 532e82d..8708644 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ScheduleForRouteServiceImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ScheduleForRouteServiceImpl.kt @@ -1,18 +1,18 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.ScheduleForRouteRetrieveParams -import com.open_transit.api.models.ScheduleForRouteRetrieveResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.ScheduleForRouteRetrieveParams +import org.onebusaway.models.ScheduleForRouteRetrieveResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class ScheduleForRouteServiceImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ScheduleForStopService.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ScheduleForStopService.kt similarity index 64% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ScheduleForStopService.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ScheduleForStopService.kt index 5a42010..6893084 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ScheduleForStopService.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ScheduleForStopService.kt @@ -2,11 +2,11 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.ScheduleForStopRetrieveParams -import com.open_transit.api.models.ScheduleForStopRetrieveResponse +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.ScheduleForStopRetrieveParams +import org.onebusaway.models.ScheduleForStopRetrieveResponse interface ScheduleForStopService { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ScheduleForStopServiceImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ScheduleForStopServiceImpl.kt similarity index 70% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ScheduleForStopServiceImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ScheduleForStopServiceImpl.kt index 6c62f82..7ddf5fc 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ScheduleForStopServiceImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ScheduleForStopServiceImpl.kt @@ -1,18 +1,18 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.ScheduleForStopRetrieveParams -import com.open_transit.api.models.ScheduleForStopRetrieveResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.ScheduleForStopRetrieveParams +import org.onebusaway.models.ScheduleForStopRetrieveResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class ScheduleForStopServiceImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/SearchForRouteService.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/SearchForRouteService.kt similarity index 65% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/SearchForRouteService.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/SearchForRouteService.kt index 8fde9d3..4e0c391 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/SearchForRouteService.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/SearchForRouteService.kt @@ -2,11 +2,11 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.SearchForRouteListParams -import com.open_transit.api.models.SearchForRouteListResponse +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.SearchForRouteListParams +import org.onebusaway.models.SearchForRouteListResponse interface SearchForRouteService { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/SearchForRouteServiceImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/SearchForRouteServiceImpl.kt similarity index 69% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/SearchForRouteServiceImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/SearchForRouteServiceImpl.kt index c46c1a6..3783fc6 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/SearchForRouteServiceImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/SearchForRouteServiceImpl.kt @@ -1,18 +1,18 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.SearchForRouteListParams -import com.open_transit.api.models.SearchForRouteListResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.SearchForRouteListParams +import org.onebusaway.models.SearchForRouteListResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class SearchForRouteServiceImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/SearchForStopService.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/SearchForStopService.kt similarity index 65% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/SearchForStopService.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/SearchForStopService.kt index 0249fdb..7b8508b 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/SearchForStopService.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/SearchForStopService.kt @@ -2,11 +2,11 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.SearchForStopListParams -import com.open_transit.api.models.SearchForStopListResponse +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.SearchForStopListParams +import org.onebusaway.models.SearchForStopListResponse interface SearchForStopService { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/SearchForStopServiceImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/SearchForStopServiceImpl.kt similarity index 69% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/SearchForStopServiceImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/SearchForStopServiceImpl.kt index b942c9a..4f95484 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/SearchForStopServiceImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/SearchForStopServiceImpl.kt @@ -1,18 +1,18 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.SearchForStopListParams -import com.open_transit.api.models.SearchForStopListResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.SearchForStopListParams +import org.onebusaway.models.SearchForStopListResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class SearchForStopServiceImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ShapeService.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ShapeService.kt similarity index 66% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ShapeService.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ShapeService.kt index c0a539e..653548d 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ShapeService.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ShapeService.kt @@ -2,11 +2,11 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.ShapeRetrieveParams -import com.open_transit.api.models.ShapeRetrieveResponse +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.ShapeRetrieveParams +import org.onebusaway.models.ShapeRetrieveResponse interface ShapeService { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ShapeServiceImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ShapeServiceImpl.kt similarity index 69% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ShapeServiceImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ShapeServiceImpl.kt index 41439d5..a6e50a3 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/ShapeServiceImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/ShapeServiceImpl.kt @@ -1,18 +1,18 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.ShapeRetrieveParams -import com.open_transit.api.models.ShapeRetrieveResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.ShapeRetrieveParams +import org.onebusaway.models.ShapeRetrieveResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class ShapeServiceImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/StopIdsForAgencyService.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/StopIdsForAgencyService.kt similarity index 64% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/StopIdsForAgencyService.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/StopIdsForAgencyService.kt index 4381c15..d4d5592 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/StopIdsForAgencyService.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/StopIdsForAgencyService.kt @@ -2,11 +2,11 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.StopIdsForAgencyListParams -import com.open_transit.api.models.StopIdsForAgencyListResponse +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.StopIdsForAgencyListParams +import org.onebusaway.models.StopIdsForAgencyListResponse interface StopIdsForAgencyService { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/StopIdsForAgencyServiceImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/StopIdsForAgencyServiceImpl.kt similarity index 69% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/StopIdsForAgencyServiceImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/StopIdsForAgencyServiceImpl.kt index 493a086..e84c2bc 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/StopIdsForAgencyServiceImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/StopIdsForAgencyServiceImpl.kt @@ -1,18 +1,18 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.StopIdsForAgencyListParams -import com.open_transit.api.models.StopIdsForAgencyListResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.StopIdsForAgencyListParams +import org.onebusaway.models.StopIdsForAgencyListResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class StopIdsForAgencyServiceImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/StopService.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/StopService.kt similarity index 65% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/StopService.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/StopService.kt index 9823dd5..dd88877 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/StopService.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/StopService.kt @@ -2,11 +2,11 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.StopRetrieveParams -import com.open_transit.api.models.StopRetrieveResponse +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.StopRetrieveParams +import org.onebusaway.models.StopRetrieveResponse interface StopService { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/StopServiceImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/StopServiceImpl.kt similarity index 69% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/StopServiceImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/StopServiceImpl.kt index 38dea18..2a9cb86 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/StopServiceImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/StopServiceImpl.kt @@ -1,18 +1,18 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.StopRetrieveParams -import com.open_transit.api.models.StopRetrieveResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.StopRetrieveParams +import org.onebusaway.models.StopRetrieveResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class StopServiceImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/StopsForLocationService.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/StopsForLocationService.kt similarity index 64% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/StopsForLocationService.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/StopsForLocationService.kt index 633db0c..5645cfb 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/StopsForLocationService.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/StopsForLocationService.kt @@ -2,11 +2,11 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.StopsForLocationListParams -import com.open_transit.api.models.StopsForLocationListResponse +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.StopsForLocationListParams +import org.onebusaway.models.StopsForLocationListResponse interface StopsForLocationService { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/StopsForLocationServiceImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/StopsForLocationServiceImpl.kt similarity index 69% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/StopsForLocationServiceImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/StopsForLocationServiceImpl.kt index 3fc84e2..5bc05b0 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/StopsForLocationServiceImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/StopsForLocationServiceImpl.kt @@ -1,18 +1,18 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.StopsForLocationListParams -import com.open_transit.api.models.StopsForLocationListResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.StopsForLocationListParams +import org.onebusaway.models.StopsForLocationListResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class StopsForLocationServiceImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/StopsForRouteService.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/StopsForRouteService.kt similarity index 64% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/StopsForRouteService.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/StopsForRouteService.kt index 6996a36..72c87c4 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/StopsForRouteService.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/StopsForRouteService.kt @@ -2,11 +2,11 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.StopsForRouteListParams -import com.open_transit.api.models.StopsForRouteListResponse +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.StopsForRouteListParams +import org.onebusaway.models.StopsForRouteListResponse interface StopsForRouteService { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/StopsForRouteServiceImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/StopsForRouteServiceImpl.kt similarity index 69% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/StopsForRouteServiceImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/StopsForRouteServiceImpl.kt index a04a9e3..c276597 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/StopsForRouteServiceImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/StopsForRouteServiceImpl.kt @@ -1,18 +1,18 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.StopsForRouteListParams -import com.open_transit.api.models.StopsForRouteListResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.StopsForRouteListParams +import org.onebusaway.models.StopsForRouteListResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class StopsForRouteServiceImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/TripDetailService.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/TripDetailService.kt similarity index 64% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/TripDetailService.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/TripDetailService.kt index f28825c..5040d0f 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/TripDetailService.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/TripDetailService.kt @@ -2,11 +2,11 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.TripDetailRetrieveParams -import com.open_transit.api.models.TripDetailRetrieveResponse +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.TripDetailRetrieveParams +import org.onebusaway.models.TripDetailRetrieveResponse interface TripDetailService { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/TripDetailServiceImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/TripDetailServiceImpl.kt similarity index 69% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/TripDetailServiceImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/TripDetailServiceImpl.kt index 54adaeb..f8930c4 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/TripDetailServiceImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/TripDetailServiceImpl.kt @@ -1,18 +1,18 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.TripDetailRetrieveParams -import com.open_transit.api.models.TripDetailRetrieveResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.TripDetailRetrieveParams +import org.onebusaway.models.TripDetailRetrieveResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class TripDetailServiceImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/TripForVehicleService.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/TripForVehicleService.kt similarity index 64% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/TripForVehicleService.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/TripForVehicleService.kt index dcf1ec4..ed0659a 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/TripForVehicleService.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/TripForVehicleService.kt @@ -2,11 +2,11 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.TripForVehicleRetrieveParams -import com.open_transit.api.models.TripForVehicleRetrieveResponse +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.TripForVehicleRetrieveParams +import org.onebusaway.models.TripForVehicleRetrieveResponse interface TripForVehicleService { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/TripForVehicleServiceImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/TripForVehicleServiceImpl.kt similarity index 70% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/TripForVehicleServiceImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/TripForVehicleServiceImpl.kt index 8209a5c..c1ae954 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/TripForVehicleServiceImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/TripForVehicleServiceImpl.kt @@ -1,18 +1,18 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.TripForVehicleRetrieveParams -import com.open_transit.api.models.TripForVehicleRetrieveResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.TripForVehicleRetrieveParams +import org.onebusaway.models.TripForVehicleRetrieveResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class TripForVehicleServiceImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/TripService.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/TripService.kt similarity index 65% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/TripService.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/TripService.kt index 2ac145e..ad7c940 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/TripService.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/TripService.kt @@ -2,11 +2,11 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.TripRetrieveParams -import com.open_transit.api.models.TripRetrieveResponse +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.TripRetrieveParams +import org.onebusaway.models.TripRetrieveResponse interface TripService { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/TripServiceImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/TripServiceImpl.kt similarity index 69% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/TripServiceImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/TripServiceImpl.kt index a584d50..80191ac 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/TripServiceImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/TripServiceImpl.kt @@ -1,18 +1,18 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.TripRetrieveParams -import com.open_transit.api.models.TripRetrieveResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.TripRetrieveParams +import org.onebusaway.models.TripRetrieveResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class TripServiceImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/TripsForLocationService.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/TripsForLocationService.kt similarity index 64% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/TripsForLocationService.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/TripsForLocationService.kt index 96053f9..ba9a53d 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/TripsForLocationService.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/TripsForLocationService.kt @@ -2,11 +2,11 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.TripsForLocationListParams -import com.open_transit.api.models.TripsForLocationListResponse +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.TripsForLocationListParams +import org.onebusaway.models.TripsForLocationListResponse interface TripsForLocationService { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/TripsForLocationServiceImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/TripsForLocationServiceImpl.kt similarity index 69% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/TripsForLocationServiceImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/TripsForLocationServiceImpl.kt index fc40f03..758f9cf 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/TripsForLocationServiceImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/TripsForLocationServiceImpl.kt @@ -1,18 +1,18 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.TripsForLocationListParams -import com.open_transit.api.models.TripsForLocationListResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.TripsForLocationListParams +import org.onebusaway.models.TripsForLocationListResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class TripsForLocationServiceImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/TripsForRouteService.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/TripsForRouteService.kt similarity index 65% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/TripsForRouteService.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/TripsForRouteService.kt index a6496ad..22f114a 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/TripsForRouteService.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/TripsForRouteService.kt @@ -2,11 +2,11 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.TripsForRouteListParams -import com.open_transit.api.models.TripsForRouteListResponse +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.TripsForRouteListParams +import org.onebusaway.models.TripsForRouteListResponse interface TripsForRouteService { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/TripsForRouteServiceImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/TripsForRouteServiceImpl.kt similarity index 70% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/TripsForRouteServiceImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/TripsForRouteServiceImpl.kt index 685fc88..2a34690 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/TripsForRouteServiceImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/TripsForRouteServiceImpl.kt @@ -1,18 +1,18 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.TripsForRouteListParams -import com.open_transit.api.models.TripsForRouteListResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.TripsForRouteListParams +import org.onebusaway.models.TripsForRouteListResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class TripsForRouteServiceImpl constructor( diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/VehiclesForAgencyService.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/VehiclesForAgencyService.kt similarity index 64% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/VehiclesForAgencyService.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/VehiclesForAgencyService.kt index 33cc584..6fb09be 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/VehiclesForAgencyService.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/VehiclesForAgencyService.kt @@ -2,11 +2,11 @@ @file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102 -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.models.VehiclesForAgencyListParams -import com.open_transit.api.models.VehiclesForAgencyListResponse +import org.onebusaway.core.RequestOptions +import org.onebusaway.models.VehiclesForAgencyListParams +import org.onebusaway.models.VehiclesForAgencyListResponse interface VehiclesForAgencyService { diff --git a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/VehiclesForAgencyServiceImpl.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/VehiclesForAgencyServiceImpl.kt similarity index 70% rename from onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/VehiclesForAgencyServiceImpl.kt rename to onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/VehiclesForAgencyServiceImpl.kt index ebf646b..1b2a7e1 100644 --- a/onebusaway-sdk-java-core/src/main/kotlin/com/open_transit/api/services/blocking/VehiclesForAgencyServiceImpl.kt +++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/services/blocking/VehiclesForAgencyServiceImpl.kt @@ -1,18 +1,18 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.core.ClientOptions -import com.open_transit.api.core.RequestOptions -import com.open_transit.api.core.http.HttpMethod -import com.open_transit.api.core.http.HttpRequest -import com.open_transit.api.core.http.HttpResponse.Handler -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.models.VehiclesForAgencyListParams -import com.open_transit.api.models.VehiclesForAgencyListResponse -import com.open_transit.api.services.errorHandler -import com.open_transit.api.services.jsonHandler -import com.open_transit.api.services.withErrorHandler +import org.onebusaway.core.ClientOptions +import org.onebusaway.core.RequestOptions +import org.onebusaway.core.http.HttpMethod +import org.onebusaway.core.http.HttpRequest +import org.onebusaway.core.http.HttpResponse.Handler +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.models.VehiclesForAgencyListParams +import org.onebusaway.models.VehiclesForAgencyListResponse +import org.onebusaway.services.errorHandler +import org.onebusaway.services.jsonHandler +import org.onebusaway.services.withErrorHandler class VehiclesForAgencyServiceImpl constructor( diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/TestServerExtension.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/TestServerExtension.kt similarity index 98% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/TestServerExtension.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/TestServerExtension.kt index 3b5348b..0902411 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/TestServerExtension.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/TestServerExtension.kt @@ -1,4 +1,4 @@ -package com.open_transit.api +package org.onebusaway import java.lang.RuntimeException import java.net.URL diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/core/http/HttpRequestTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/core/http/HttpRequestTest.kt similarity index 95% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/core/http/HttpRequestTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/core/http/HttpRequestTest.kt index cf08c7c..1a19904 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/core/http/HttpRequestTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/core/http/HttpRequestTest.kt @@ -1,4 +1,4 @@ -package com.open_transit.api.core.http +package org.onebusaway.core.http import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.Test diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/core/http/RetryingHttpClientTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/core/http/RetryingHttpClientTest.kt similarity index 98% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/core/http/RetryingHttpClientTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/core/http/RetryingHttpClientTest.kt index 6d46e26..22b8b7f 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/core/http/RetryingHttpClientTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/core/http/RetryingHttpClientTest.kt @@ -1,15 +1,15 @@ -package com.open_transit.api.core.http +package org.onebusaway.core.http import com.github.tomakehurst.wiremock.client.WireMock.* import com.github.tomakehurst.wiremock.junit5.WireMockRuntimeInfo import com.github.tomakehurst.wiremock.junit5.WireMockTest import com.github.tomakehurst.wiremock.stubbing.Scenario -import com.open_transit.api.client.okhttp.OkHttpClient import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.BeforeEach import org.junit.jupiter.api.Test import org.junit.jupiter.params.ParameterizedTest import org.junit.jupiter.params.provider.ValueSource +import org.onebusaway.client.okhttp.OkHttpClient @WireMockTest internal class RetryingHttpClientTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/core/http/SerializerTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/core/http/SerializerTest.kt similarity index 97% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/core/http/SerializerTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/core/http/SerializerTest.kt index ecf877b..82d37c5 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/core/http/SerializerTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/core/http/SerializerTest.kt @@ -1,13 +1,13 @@ -package com.open_transit.api.core.http +package org.onebusaway.core.http import com.fasterxml.jackson.annotation.JsonAnyGetter import com.fasterxml.jackson.annotation.JsonAnySetter import com.fasterxml.jackson.annotation.JsonProperty import com.fasterxml.jackson.databind.annotation.JsonDeserialize -import com.open_transit.api.core.* import java.util.* import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.Test +import org.onebusaway.core.* internal class SerializerTest { @JsonDeserialize(builder = ClassWithBooleanFieldPrefixedWithIs.Builder::class) diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/AgenciesWithCoverageListParamsTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/AgenciesWithCoverageListParamsTest.kt similarity index 78% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/AgenciesWithCoverageListParamsTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/AgenciesWithCoverageListParamsTest.kt index 7631da9..b9a2bd0 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/AgenciesWithCoverageListParamsTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/AgenciesWithCoverageListParamsTest.kt @@ -1,9 +1,9 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.models.* import org.junit.jupiter.api.Test +import org.onebusaway.models.* class AgenciesWithCoverageListParamsTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/AgencyRetrieveParamsTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/AgencyRetrieveParamsTest.kt similarity index 89% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/AgencyRetrieveParamsTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/AgencyRetrieveParamsTest.kt index a988a5e..ac27d2d 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/AgencyRetrieveParamsTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/AgencyRetrieveParamsTest.kt @@ -1,10 +1,10 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.models.* import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.Test +import org.onebusaway.models.* class AgencyRetrieveParamsTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/ArrivalAndDepartureListParamsTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/ArrivalAndDepartureListParamsTest.kt similarity index 96% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/ArrivalAndDepartureListParamsTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/ArrivalAndDepartureListParamsTest.kt index 3af1606..a926379 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/ArrivalAndDepartureListParamsTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/ArrivalAndDepartureListParamsTest.kt @@ -1,11 +1,11 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.models.* import java.time.OffsetDateTime import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.Test +import org.onebusaway.models.* class ArrivalAndDepartureListParamsTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/ArrivalAndDepartureRetrieveParamsTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/ArrivalAndDepartureRetrieveParamsTest.kt similarity index 96% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/ArrivalAndDepartureRetrieveParamsTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/ArrivalAndDepartureRetrieveParamsTest.kt index 8dd623f..1dcf6c7 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/ArrivalAndDepartureRetrieveParamsTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/ArrivalAndDepartureRetrieveParamsTest.kt @@ -1,10 +1,10 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.models.* import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.Test +import org.onebusaway.models.* class ArrivalAndDepartureRetrieveParamsTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/BlockRetrieveParamsTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/BlockRetrieveParamsTest.kt similarity index 89% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/BlockRetrieveParamsTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/BlockRetrieveParamsTest.kt index bf66b27..ce5a695 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/BlockRetrieveParamsTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/BlockRetrieveParamsTest.kt @@ -1,10 +1,10 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.models.* import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.Test +import org.onebusaway.models.* class BlockRetrieveParamsTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/ConfigRetrieveParamsTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/ConfigRetrieveParamsTest.kt similarity index 75% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/ConfigRetrieveParamsTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/ConfigRetrieveParamsTest.kt index 5f8cf5b..2a94f4c 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/ConfigRetrieveParamsTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/ConfigRetrieveParamsTest.kt @@ -1,9 +1,9 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.models.* import org.junit.jupiter.api.Test +import org.onebusaway.models.* class ConfigRetrieveParamsTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/CurrentTimeRetrieveParamsTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/CurrentTimeRetrieveParamsTest.kt similarity index 76% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/CurrentTimeRetrieveParamsTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/CurrentTimeRetrieveParamsTest.kt index 4b48a37..673dba1 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/CurrentTimeRetrieveParamsTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/CurrentTimeRetrieveParamsTest.kt @@ -1,9 +1,9 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.models.* import org.junit.jupiter.api.Test +import org.onebusaway.models.* class CurrentTimeRetrieveParamsTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/ReferencesTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/ReferencesTest.kt similarity index 99% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/ReferencesTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/ReferencesTest.kt index 3aa53b6..3f3b282 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/ReferencesTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/ReferencesTest.kt @@ -1,6 +1,6 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.Test diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/ReportProblemWithStopRetrieveParamsTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/ReportProblemWithStopRetrieveParamsTest.kt similarity index 96% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/ReportProblemWithStopRetrieveParamsTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/ReportProblemWithStopRetrieveParamsTest.kt index bccaa4c..ca3f9e6 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/ReportProblemWithStopRetrieveParamsTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/ReportProblemWithStopRetrieveParamsTest.kt @@ -1,10 +1,10 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.models.* import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.Test +import org.onebusaway.models.* class ReportProblemWithStopRetrieveParamsTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/ReportProblemWithTripRetrieveParamsTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/ReportProblemWithTripRetrieveParamsTest.kt similarity index 97% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/ReportProblemWithTripRetrieveParamsTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/ReportProblemWithTripRetrieveParamsTest.kt index 075ed9e..64ed4cc 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/ReportProblemWithTripRetrieveParamsTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/ReportProblemWithTripRetrieveParamsTest.kt @@ -1,10 +1,10 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.models.* import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.Test +import org.onebusaway.models.* class ReportProblemWithTripRetrieveParamsTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/ResponseWrapperTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/ResponseWrapperTest.kt similarity index 95% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/ResponseWrapperTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/ResponseWrapperTest.kt index 01c3e15..c9dabeb 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/ResponseWrapperTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/ResponseWrapperTest.kt @@ -1,6 +1,6 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.Test diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/RouteIdsForAgencyListParamsTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/RouteIdsForAgencyListParamsTest.kt similarity index 90% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/RouteIdsForAgencyListParamsTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/RouteIdsForAgencyListParamsTest.kt index ec4d34f..ade68cb 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/RouteIdsForAgencyListParamsTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/RouteIdsForAgencyListParamsTest.kt @@ -1,10 +1,10 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.models.* import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.Test +import org.onebusaway.models.* class RouteIdsForAgencyListParamsTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/RouteRetrieveParamsTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/RouteRetrieveParamsTest.kt similarity index 89% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/RouteRetrieveParamsTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/RouteRetrieveParamsTest.kt index 22e2068..5af4c59 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/RouteRetrieveParamsTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/RouteRetrieveParamsTest.kt @@ -1,10 +1,10 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.models.* import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.Test +import org.onebusaway.models.* class RouteRetrieveParamsTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/RoutesForAgencyListParamsTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/RoutesForAgencyListParamsTest.kt similarity index 90% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/RoutesForAgencyListParamsTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/RoutesForAgencyListParamsTest.kt index 6999dc4..798f270 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/RoutesForAgencyListParamsTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/RoutesForAgencyListParamsTest.kt @@ -1,10 +1,10 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.models.* import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.Test +import org.onebusaway.models.* class RoutesForAgencyListParamsTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/RoutesForLocationListParamsTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/RoutesForLocationListParamsTest.kt similarity index 95% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/RoutesForLocationListParamsTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/RoutesForLocationListParamsTest.kt index 56037ca..946a91a 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/RoutesForLocationListParamsTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/RoutesForLocationListParamsTest.kt @@ -1,10 +1,10 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.models.* import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.Test +import org.onebusaway.models.* class RoutesForLocationListParamsTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/ScheduleForRouteRetrieveParamsTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/ScheduleForRouteRetrieveParamsTest.kt similarity index 95% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/ScheduleForRouteRetrieveParamsTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/ScheduleForRouteRetrieveParamsTest.kt index 50279c6..98f2520 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/ScheduleForRouteRetrieveParamsTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/ScheduleForRouteRetrieveParamsTest.kt @@ -1,11 +1,11 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.models.* import java.time.LocalDate import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.Test +import org.onebusaway.models.* class ScheduleForRouteRetrieveParamsTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/ScheduleForStopRetrieveParamsTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/ScheduleForStopRetrieveParamsTest.kt similarity index 95% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/ScheduleForStopRetrieveParamsTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/ScheduleForStopRetrieveParamsTest.kt index ce9846b..645d47e 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/ScheduleForStopRetrieveParamsTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/ScheduleForStopRetrieveParamsTest.kt @@ -1,11 +1,11 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.models.* import java.time.LocalDate import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.Test +import org.onebusaway.models.* class ScheduleForStopRetrieveParamsTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/SearchForRouteListParamsTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/SearchForRouteListParamsTest.kt similarity index 93% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/SearchForRouteListParamsTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/SearchForRouteListParamsTest.kt index 0745a11..1b2453d 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/SearchForRouteListParamsTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/SearchForRouteListParamsTest.kt @@ -1,10 +1,10 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.models.* import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.Test +import org.onebusaway.models.* class SearchForRouteListParamsTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/SearchForStopListParamsTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/SearchForStopListParamsTest.kt similarity index 93% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/SearchForStopListParamsTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/SearchForStopListParamsTest.kt index e13007c..1825b87 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/SearchForStopListParamsTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/SearchForStopListParamsTest.kt @@ -1,10 +1,10 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.models.* import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.Test +import org.onebusaway.models.* class SearchForStopListParamsTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/ShapeRetrieveParamsTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/ShapeRetrieveParamsTest.kt similarity index 89% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/ShapeRetrieveParamsTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/ShapeRetrieveParamsTest.kt index b715d84..41e8572 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/ShapeRetrieveParamsTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/ShapeRetrieveParamsTest.kt @@ -1,10 +1,10 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.models.* import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.Test +import org.onebusaway.models.* class ShapeRetrieveParamsTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/StopIdsForAgencyListParamsTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/StopIdsForAgencyListParamsTest.kt similarity index 90% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/StopIdsForAgencyListParamsTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/StopIdsForAgencyListParamsTest.kt index d610465..f87b32a 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/StopIdsForAgencyListParamsTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/StopIdsForAgencyListParamsTest.kt @@ -1,10 +1,10 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.models.* import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.Test +import org.onebusaway.models.* class StopIdsForAgencyListParamsTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/StopRetrieveParamsTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/StopRetrieveParamsTest.kt similarity index 89% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/StopRetrieveParamsTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/StopRetrieveParamsTest.kt index e4f535f..7fa9cd9 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/StopRetrieveParamsTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/StopRetrieveParamsTest.kt @@ -1,10 +1,10 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.models.* import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.Test +import org.onebusaway.models.* class StopRetrieveParamsTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/StopsForLocationListParamsTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/StopsForLocationListParamsTest.kt similarity index 95% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/StopsForLocationListParamsTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/StopsForLocationListParamsTest.kt index 5f766db..07dde7e 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/StopsForLocationListParamsTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/StopsForLocationListParamsTest.kt @@ -1,10 +1,10 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.models.* import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.Test +import org.onebusaway.models.* class StopsForLocationListParamsTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/StopsForRouteListParamsTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/StopsForRouteListParamsTest.kt similarity index 95% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/StopsForRouteListParamsTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/StopsForRouteListParamsTest.kt index 8f0fd63..607e832 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/StopsForRouteListParamsTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/StopsForRouteListParamsTest.kt @@ -1,10 +1,10 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.models.* import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.Test +import org.onebusaway.models.* class StopsForRouteListParamsTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/TripDetailRetrieveParamsTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/TripDetailRetrieveParamsTest.kt similarity index 96% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/TripDetailRetrieveParamsTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/TripDetailRetrieveParamsTest.kt index 4a07f11..2e4eaa9 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/TripDetailRetrieveParamsTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/TripDetailRetrieveParamsTest.kt @@ -1,10 +1,10 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.models.* import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.Test +import org.onebusaway.models.* class TripDetailRetrieveParamsTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/TripForVehicleRetrieveParamsTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/TripForVehicleRetrieveParamsTest.kt similarity index 96% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/TripForVehicleRetrieveParamsTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/TripForVehicleRetrieveParamsTest.kt index 5a35a1f..e30e5e3 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/TripForVehicleRetrieveParamsTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/TripForVehicleRetrieveParamsTest.kt @@ -1,10 +1,10 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.models.* import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.Test +import org.onebusaway.models.* class TripForVehicleRetrieveParamsTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/TripRetrieveParamsTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/TripRetrieveParamsTest.kt similarity index 89% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/TripRetrieveParamsTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/TripRetrieveParamsTest.kt index b47951c..61d3ab0 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/TripRetrieveParamsTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/TripRetrieveParamsTest.kt @@ -1,10 +1,10 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.models.* import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.Test +import org.onebusaway.models.* class TripRetrieveParamsTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/TripsForLocationListParamsTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/TripsForLocationListParamsTest.kt similarity index 96% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/TripsForLocationListParamsTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/TripsForLocationListParamsTest.kt index af943dd..e92df58 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/TripsForLocationListParamsTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/TripsForLocationListParamsTest.kt @@ -1,10 +1,10 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.models.* import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.Test +import org.onebusaway.models.* class TripsForLocationListParamsTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/TripsForRouteListParamsTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/TripsForRouteListParamsTest.kt similarity index 95% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/TripsForRouteListParamsTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/TripsForRouteListParamsTest.kt index 9dde17b..6914198 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/TripsForRouteListParamsTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/TripsForRouteListParamsTest.kt @@ -1,10 +1,10 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.models.* import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.Test +import org.onebusaway.models.* class TripsForRouteListParamsTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/VehiclesForAgencyListParamsTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/VehiclesForAgencyListParamsTest.kt similarity index 94% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/VehiclesForAgencyListParamsTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/VehiclesForAgencyListParamsTest.kt index 0f7f74c..93762bd 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/models/VehiclesForAgencyListParamsTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/models/VehiclesForAgencyListParamsTest.kt @@ -1,10 +1,10 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.models +package org.onebusaway.models -import com.open_transit.api.models.* import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.Test +import org.onebusaway.models.* class VehiclesForAgencyListParamsTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/ErrorHandlingTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/ErrorHandlingTest.kt similarity index 93% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/ErrorHandlingTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/ErrorHandlingTest.kt index fbdcf7d..04f50bf 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/ErrorHandlingTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/ErrorHandlingTest.kt @@ -1,6 +1,6 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services +package org.onebusaway.services import com.fasterxml.jackson.databind.json.JsonMapper import com.github.tomakehurst.wiremock.client.WireMock.anyUrl @@ -12,27 +12,27 @@ import com.github.tomakehurst.wiremock.junit5.WireMockRuntimeInfo import com.github.tomakehurst.wiremock.junit5.WireMockTest import com.google.common.collect.ImmutableListMultimap import com.google.common.collect.ListMultimap -import com.open_transit.api.client.OnebusawaySdkClient -import com.open_transit.api.client.okhttp.OnebusawaySdkOkHttpClient -import com.open_transit.api.core.JsonString -import com.open_transit.api.core.jsonMapper -import com.open_transit.api.errors.BadRequestException -import com.open_transit.api.errors.InternalServerException -import com.open_transit.api.errors.NotFoundException -import com.open_transit.api.errors.OnebusawaySdkError -import com.open_transit.api.errors.OnebusawaySdkException -import com.open_transit.api.errors.PermissionDeniedException -import com.open_transit.api.errors.RateLimitException -import com.open_transit.api.errors.UnauthorizedException -import com.open_transit.api.errors.UnexpectedStatusCodeException -import com.open_transit.api.errors.UnprocessableEntityException -import com.open_transit.api.models.* import org.assertj.core.api.Assertions.assertThat import org.assertj.core.api.Assertions.assertThatThrownBy import org.assertj.core.api.InstanceOfAssertFactories import org.assertj.guava.api.Assertions.assertThat import org.junit.jupiter.api.BeforeEach import org.junit.jupiter.api.Test +import org.onebusaway.client.OnebusawaySdkClient +import org.onebusaway.client.okhttp.OnebusawaySdkOkHttpClient +import org.onebusaway.core.JsonString +import org.onebusaway.core.jsonMapper +import org.onebusaway.errors.BadRequestException +import org.onebusaway.errors.InternalServerException +import org.onebusaway.errors.NotFoundException +import org.onebusaway.errors.OnebusawaySdkError +import org.onebusaway.errors.OnebusawaySdkException +import org.onebusaway.errors.PermissionDeniedException +import org.onebusaway.errors.RateLimitException +import org.onebusaway.errors.UnauthorizedException +import org.onebusaway.errors.UnexpectedStatusCodeException +import org.onebusaway.errors.UnprocessableEntityException +import org.onebusaway.models.* @WireMockTest class ErrorHandlingTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/ServiceParamsTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/ServiceParamsTest.kt similarity index 90% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/ServiceParamsTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/ServiceParamsTest.kt index 86522c9..519ab15 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/ServiceParamsTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/ServiceParamsTest.kt @@ -1,6 +1,6 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services +package org.onebusaway.services import com.fasterxml.jackson.databind.json.JsonMapper import com.github.tomakehurst.wiremock.client.WireMock.anyUrl @@ -13,12 +13,12 @@ import com.github.tomakehurst.wiremock.client.WireMock.stubFor import com.github.tomakehurst.wiremock.client.WireMock.verify import com.github.tomakehurst.wiremock.junit5.WireMockRuntimeInfo import com.github.tomakehurst.wiremock.junit5.WireMockTest -import com.open_transit.api.client.OnebusawaySdkClient -import com.open_transit.api.client.okhttp.OnebusawaySdkOkHttpClient -import com.open_transit.api.core.jsonMapper -import com.open_transit.api.models.* import org.junit.jupiter.api.BeforeEach import org.junit.jupiter.api.Test +import org.onebusaway.client.OnebusawaySdkClient +import org.onebusaway.client.okhttp.OnebusawaySdkOkHttpClient +import org.onebusaway.core.jsonMapper +import org.onebusaway.models.* @WireMockTest class ServiceParamsTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/AgenciesWithCoverageServiceTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/AgenciesWithCoverageServiceTest.kt similarity index 78% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/AgenciesWithCoverageServiceTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/AgenciesWithCoverageServiceTest.kt index a9daf56..7b094a1 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/AgenciesWithCoverageServiceTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/AgenciesWithCoverageServiceTest.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.TestServerExtension -import com.open_transit.api.client.okhttp.OnebusawaySdkOkHttpClient -import com.open_transit.api.models.* import org.junit.jupiter.api.Test import org.junit.jupiter.api.extension.ExtendWith +import org.onebusaway.TestServerExtension +import org.onebusaway.client.okhttp.OnebusawaySdkOkHttpClient +import org.onebusaway.models.* @ExtendWith(TestServerExtension::class) class AgenciesWithCoverageServiceTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/AgencyServiceTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/AgencyServiceTest.kt similarity index 76% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/AgencyServiceTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/AgencyServiceTest.kt index 059a7a2..0572732 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/AgencyServiceTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/AgencyServiceTest.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.TestServerExtension -import com.open_transit.api.client.okhttp.OnebusawaySdkOkHttpClient -import com.open_transit.api.models.* import org.junit.jupiter.api.Test import org.junit.jupiter.api.extension.ExtendWith +import org.onebusaway.TestServerExtension +import org.onebusaway.client.okhttp.OnebusawaySdkOkHttpClient +import org.onebusaway.models.* @ExtendWith(TestServerExtension::class) class AgencyServiceTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/ArrivalAndDepartureServiceTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/ArrivalAndDepartureServiceTest.kt similarity index 89% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/ArrivalAndDepartureServiceTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/ArrivalAndDepartureServiceTest.kt index 42e0d43..8e0a8ee 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/ArrivalAndDepartureServiceTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/ArrivalAndDepartureServiceTest.kt @@ -1,13 +1,13 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.TestServerExtension -import com.open_transit.api.client.okhttp.OnebusawaySdkOkHttpClient -import com.open_transit.api.models.* import java.time.OffsetDateTime import org.junit.jupiter.api.Test import org.junit.jupiter.api.extension.ExtendWith +import org.onebusaway.TestServerExtension +import org.onebusaway.client.okhttp.OnebusawaySdkOkHttpClient +import org.onebusaway.models.* @ExtendWith(TestServerExtension::class) class ArrivalAndDepartureServiceTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/BlockServiceTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/BlockServiceTest.kt similarity index 76% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/BlockServiceTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/BlockServiceTest.kt index 3bbe691..f6f35a3 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/BlockServiceTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/BlockServiceTest.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.TestServerExtension -import com.open_transit.api.client.okhttp.OnebusawaySdkOkHttpClient -import com.open_transit.api.models.* import org.junit.jupiter.api.Test import org.junit.jupiter.api.extension.ExtendWith +import org.onebusaway.TestServerExtension +import org.onebusaway.client.okhttp.OnebusawaySdkOkHttpClient +import org.onebusaway.models.* @ExtendWith(TestServerExtension::class) class BlockServiceTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/ConfigServiceTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/ConfigServiceTest.kt similarity index 75% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/ConfigServiceTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/ConfigServiceTest.kt index df0ad4c..bc5911c 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/ConfigServiceTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/ConfigServiceTest.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.TestServerExtension -import com.open_transit.api.client.okhttp.OnebusawaySdkOkHttpClient -import com.open_transit.api.models.* import org.junit.jupiter.api.Test import org.junit.jupiter.api.extension.ExtendWith +import org.onebusaway.TestServerExtension +import org.onebusaway.client.okhttp.OnebusawaySdkOkHttpClient +import org.onebusaway.models.* @ExtendWith(TestServerExtension::class) class ConfigServiceTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/CurrentTimeServiceTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/CurrentTimeServiceTest.kt similarity index 76% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/CurrentTimeServiceTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/CurrentTimeServiceTest.kt index 393bcd0..cdb4072 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/CurrentTimeServiceTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/CurrentTimeServiceTest.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.TestServerExtension -import com.open_transit.api.client.okhttp.OnebusawaySdkOkHttpClient -import com.open_transit.api.models.* import org.junit.jupiter.api.Test import org.junit.jupiter.api.extension.ExtendWith +import org.onebusaway.TestServerExtension +import org.onebusaway.client.okhttp.OnebusawaySdkOkHttpClient +import org.onebusaway.models.* @ExtendWith(TestServerExtension::class) class CurrentTimeServiceTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/ReportProblemWithStopServiceTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/ReportProblemWithStopServiceTest.kt similarity index 84% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/ReportProblemWithStopServiceTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/ReportProblemWithStopServiceTest.kt index 9b8bb3f..c736e3d 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/ReportProblemWithStopServiceTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/ReportProblemWithStopServiceTest.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.TestServerExtension -import com.open_transit.api.client.okhttp.OnebusawaySdkOkHttpClient -import com.open_transit.api.models.* import org.junit.jupiter.api.Test import org.junit.jupiter.api.extension.ExtendWith +import org.onebusaway.TestServerExtension +import org.onebusaway.client.okhttp.OnebusawaySdkOkHttpClient +import org.onebusaway.models.* @ExtendWith(TestServerExtension::class) class ReportProblemWithStopServiceTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/ReportProblemWithTripServiceTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/ReportProblemWithTripServiceTest.kt similarity index 86% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/ReportProblemWithTripServiceTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/ReportProblemWithTripServiceTest.kt index a90af72..cef72e1 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/ReportProblemWithTripServiceTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/ReportProblemWithTripServiceTest.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.TestServerExtension -import com.open_transit.api.client.okhttp.OnebusawaySdkOkHttpClient -import com.open_transit.api.models.* import org.junit.jupiter.api.Test import org.junit.jupiter.api.extension.ExtendWith +import org.onebusaway.TestServerExtension +import org.onebusaway.client.okhttp.OnebusawaySdkOkHttpClient +import org.onebusaway.models.* @ExtendWith(TestServerExtension::class) class ReportProblemWithTripServiceTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/RouteIdsForAgencyServiceTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/RouteIdsForAgencyServiceTest.kt similarity index 78% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/RouteIdsForAgencyServiceTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/RouteIdsForAgencyServiceTest.kt index f902677..c3a7118 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/RouteIdsForAgencyServiceTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/RouteIdsForAgencyServiceTest.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.TestServerExtension -import com.open_transit.api.client.okhttp.OnebusawaySdkOkHttpClient -import com.open_transit.api.models.* import org.junit.jupiter.api.Test import org.junit.jupiter.api.extension.ExtendWith +import org.onebusaway.TestServerExtension +import org.onebusaway.client.okhttp.OnebusawaySdkOkHttpClient +import org.onebusaway.models.* @ExtendWith(TestServerExtension::class) class RouteIdsForAgencyServiceTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/RouteServiceTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/RouteServiceTest.kt similarity index 76% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/RouteServiceTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/RouteServiceTest.kt index d9909d2..4047e42 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/RouteServiceTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/RouteServiceTest.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.TestServerExtension -import com.open_transit.api.client.okhttp.OnebusawaySdkOkHttpClient -import com.open_transit.api.models.* import org.junit.jupiter.api.Test import org.junit.jupiter.api.extension.ExtendWith +import org.onebusaway.TestServerExtension +import org.onebusaway.client.okhttp.OnebusawaySdkOkHttpClient +import org.onebusaway.models.* @ExtendWith(TestServerExtension::class) class RouteServiceTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/RoutesForAgencyServiceTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/RoutesForAgencyServiceTest.kt similarity index 78% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/RoutesForAgencyServiceTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/RoutesForAgencyServiceTest.kt index 3f38dbe..4171539 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/RoutesForAgencyServiceTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/RoutesForAgencyServiceTest.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.TestServerExtension -import com.open_transit.api.client.okhttp.OnebusawaySdkOkHttpClient -import com.open_transit.api.models.* import org.junit.jupiter.api.Test import org.junit.jupiter.api.extension.ExtendWith +import org.onebusaway.TestServerExtension +import org.onebusaway.client.okhttp.OnebusawaySdkOkHttpClient +import org.onebusaway.models.* @ExtendWith(TestServerExtension::class) class RoutesForAgencyServiceTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/RoutesForLocationServiceTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/RoutesForLocationServiceTest.kt similarity index 82% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/RoutesForLocationServiceTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/RoutesForLocationServiceTest.kt index 3700e56..be1c92e 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/RoutesForLocationServiceTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/RoutesForLocationServiceTest.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.TestServerExtension -import com.open_transit.api.client.okhttp.OnebusawaySdkOkHttpClient -import com.open_transit.api.models.* import org.junit.jupiter.api.Test import org.junit.jupiter.api.extension.ExtendWith +import org.onebusaway.TestServerExtension +import org.onebusaway.client.okhttp.OnebusawaySdkOkHttpClient +import org.onebusaway.models.* @ExtendWith(TestServerExtension::class) class RoutesForLocationServiceTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/ScheduleForRouteServiceTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/ScheduleForRouteServiceTest.kt similarity index 81% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/ScheduleForRouteServiceTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/ScheduleForRouteServiceTest.kt index a30051b..f684ec5 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/ScheduleForRouteServiceTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/ScheduleForRouteServiceTest.kt @@ -1,13 +1,13 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.TestServerExtension -import com.open_transit.api.client.okhttp.OnebusawaySdkOkHttpClient -import com.open_transit.api.models.* import java.time.LocalDate import org.junit.jupiter.api.Test import org.junit.jupiter.api.extension.ExtendWith +import org.onebusaway.TestServerExtension +import org.onebusaway.client.okhttp.OnebusawaySdkOkHttpClient +import org.onebusaway.models.* @ExtendWith(TestServerExtension::class) class ScheduleForRouteServiceTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/ScheduleForStopServiceTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/ScheduleForStopServiceTest.kt similarity index 81% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/ScheduleForStopServiceTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/ScheduleForStopServiceTest.kt index cb2c7f4..84fa8e0 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/ScheduleForStopServiceTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/ScheduleForStopServiceTest.kt @@ -1,13 +1,13 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.TestServerExtension -import com.open_transit.api.client.okhttp.OnebusawaySdkOkHttpClient -import com.open_transit.api.models.* import java.time.LocalDate import org.junit.jupiter.api.Test import org.junit.jupiter.api.extension.ExtendWith +import org.onebusaway.TestServerExtension +import org.onebusaway.client.okhttp.OnebusawaySdkOkHttpClient +import org.onebusaway.models.* @ExtendWith(TestServerExtension::class) class ScheduleForStopServiceTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/SearchForRouteServiceTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/SearchForRouteServiceTest.kt similarity index 78% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/SearchForRouteServiceTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/SearchForRouteServiceTest.kt index 5c8be30..2c1a5fa 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/SearchForRouteServiceTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/SearchForRouteServiceTest.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.TestServerExtension -import com.open_transit.api.client.okhttp.OnebusawaySdkOkHttpClient -import com.open_transit.api.models.* import org.junit.jupiter.api.Test import org.junit.jupiter.api.extension.ExtendWith +import org.onebusaway.TestServerExtension +import org.onebusaway.client.okhttp.OnebusawaySdkOkHttpClient +import org.onebusaway.models.* @ExtendWith(TestServerExtension::class) class SearchForRouteServiceTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/SearchForStopServiceTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/SearchForStopServiceTest.kt similarity index 78% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/SearchForStopServiceTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/SearchForStopServiceTest.kt index 7da2363..b9b1a95 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/SearchForStopServiceTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/SearchForStopServiceTest.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.TestServerExtension -import com.open_transit.api.client.okhttp.OnebusawaySdkOkHttpClient -import com.open_transit.api.models.* import org.junit.jupiter.api.Test import org.junit.jupiter.api.extension.ExtendWith +import org.onebusaway.TestServerExtension +import org.onebusaway.client.okhttp.OnebusawaySdkOkHttpClient +import org.onebusaway.models.* @ExtendWith(TestServerExtension::class) class SearchForStopServiceTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/ShapeServiceTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/ShapeServiceTest.kt similarity index 76% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/ShapeServiceTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/ShapeServiceTest.kt index 5bc2d81..25431d2 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/ShapeServiceTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/ShapeServiceTest.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.TestServerExtension -import com.open_transit.api.client.okhttp.OnebusawaySdkOkHttpClient -import com.open_transit.api.models.* import org.junit.jupiter.api.Test import org.junit.jupiter.api.extension.ExtendWith +import org.onebusaway.TestServerExtension +import org.onebusaway.client.okhttp.OnebusawaySdkOkHttpClient +import org.onebusaway.models.* @ExtendWith(TestServerExtension::class) class ShapeServiceTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/StopIdsForAgencyServiceTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/StopIdsForAgencyServiceTest.kt similarity index 78% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/StopIdsForAgencyServiceTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/StopIdsForAgencyServiceTest.kt index 71e62f6..143e7ce 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/StopIdsForAgencyServiceTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/StopIdsForAgencyServiceTest.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.TestServerExtension -import com.open_transit.api.client.okhttp.OnebusawaySdkOkHttpClient -import com.open_transit.api.models.* import org.junit.jupiter.api.Test import org.junit.jupiter.api.extension.ExtendWith +import org.onebusaway.TestServerExtension +import org.onebusaway.client.okhttp.OnebusawaySdkOkHttpClient +import org.onebusaway.models.* @ExtendWith(TestServerExtension::class) class StopIdsForAgencyServiceTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/StopServiceTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/StopServiceTest.kt similarity index 76% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/StopServiceTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/StopServiceTest.kt index 0007fe3..898436b 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/StopServiceTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/StopServiceTest.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.TestServerExtension -import com.open_transit.api.client.okhttp.OnebusawaySdkOkHttpClient -import com.open_transit.api.models.* import org.junit.jupiter.api.Test import org.junit.jupiter.api.extension.ExtendWith +import org.onebusaway.TestServerExtension +import org.onebusaway.client.okhttp.OnebusawaySdkOkHttpClient +import org.onebusaway.models.* @ExtendWith(TestServerExtension::class) class StopServiceTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/StopsForLocationServiceTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/StopsForLocationServiceTest.kt similarity index 82% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/StopsForLocationServiceTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/StopsForLocationServiceTest.kt index a5eb6be..d3828a0 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/StopsForLocationServiceTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/StopsForLocationServiceTest.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.TestServerExtension -import com.open_transit.api.client.okhttp.OnebusawaySdkOkHttpClient -import com.open_transit.api.models.* import org.junit.jupiter.api.Test import org.junit.jupiter.api.extension.ExtendWith +import org.onebusaway.TestServerExtension +import org.onebusaway.client.okhttp.OnebusawaySdkOkHttpClient +import org.onebusaway.models.* @ExtendWith(TestServerExtension::class) class StopsForLocationServiceTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/StopsForRouteServiceTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/StopsForRouteServiceTest.kt similarity index 80% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/StopsForRouteServiceTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/StopsForRouteServiceTest.kt index 8213940..d5a42a4 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/StopsForRouteServiceTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/StopsForRouteServiceTest.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.TestServerExtension -import com.open_transit.api.client.okhttp.OnebusawaySdkOkHttpClient -import com.open_transit.api.models.* import org.junit.jupiter.api.Test import org.junit.jupiter.api.extension.ExtendWith +import org.onebusaway.TestServerExtension +import org.onebusaway.client.okhttp.OnebusawaySdkOkHttpClient +import org.onebusaway.models.* @ExtendWith(TestServerExtension::class) class StopsForRouteServiceTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/TripDetailServiceTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/TripDetailServiceTest.kt similarity index 82% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/TripDetailServiceTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/TripDetailServiceTest.kt index 0aaea51..a5e8820 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/TripDetailServiceTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/TripDetailServiceTest.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.TestServerExtension -import com.open_transit.api.client.okhttp.OnebusawaySdkOkHttpClient -import com.open_transit.api.models.* import org.junit.jupiter.api.Test import org.junit.jupiter.api.extension.ExtendWith +import org.onebusaway.TestServerExtension +import org.onebusaway.client.okhttp.OnebusawaySdkOkHttpClient +import org.onebusaway.models.* @ExtendWith(TestServerExtension::class) class TripDetailServiceTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/TripForVehicleServiceTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/TripForVehicleServiceTest.kt similarity index 82% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/TripForVehicleServiceTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/TripForVehicleServiceTest.kt index 1fb9ccf..c3344e5 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/TripForVehicleServiceTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/TripForVehicleServiceTest.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.TestServerExtension -import com.open_transit.api.client.okhttp.OnebusawaySdkOkHttpClient -import com.open_transit.api.models.* import org.junit.jupiter.api.Test import org.junit.jupiter.api.extension.ExtendWith +import org.onebusaway.TestServerExtension +import org.onebusaway.client.okhttp.OnebusawaySdkOkHttpClient +import org.onebusaway.models.* @ExtendWith(TestServerExtension::class) class TripForVehicleServiceTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/TripServiceTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/TripServiceTest.kt similarity index 76% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/TripServiceTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/TripServiceTest.kt index 98c863f..ce7d73b 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/TripServiceTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/TripServiceTest.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.TestServerExtension -import com.open_transit.api.client.okhttp.OnebusawaySdkOkHttpClient -import com.open_transit.api.models.* import org.junit.jupiter.api.Test import org.junit.jupiter.api.extension.ExtendWith +import org.onebusaway.TestServerExtension +import org.onebusaway.client.okhttp.OnebusawaySdkOkHttpClient +import org.onebusaway.models.* @ExtendWith(TestServerExtension::class) class TripServiceTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/TripsForLocationServiceTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/TripsForLocationServiceTest.kt similarity index 83% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/TripsForLocationServiceTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/TripsForLocationServiceTest.kt index 4fa9542..7c539e8 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/TripsForLocationServiceTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/TripsForLocationServiceTest.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.TestServerExtension -import com.open_transit.api.client.okhttp.OnebusawaySdkOkHttpClient -import com.open_transit.api.models.* import org.junit.jupiter.api.Test import org.junit.jupiter.api.extension.ExtendWith +import org.onebusaway.TestServerExtension +import org.onebusaway.client.okhttp.OnebusawaySdkOkHttpClient +import org.onebusaway.models.* @ExtendWith(TestServerExtension::class) class TripsForLocationServiceTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/TripsForRouteServiceTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/TripsForRouteServiceTest.kt similarity index 81% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/TripsForRouteServiceTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/TripsForRouteServiceTest.kt index 4ccdd9b..8568827 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/TripsForRouteServiceTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/TripsForRouteServiceTest.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.TestServerExtension -import com.open_transit.api.client.okhttp.OnebusawaySdkOkHttpClient -import com.open_transit.api.models.* import org.junit.jupiter.api.Test import org.junit.jupiter.api.extension.ExtendWith +import org.onebusaway.TestServerExtension +import org.onebusaway.client.okhttp.OnebusawaySdkOkHttpClient +import org.onebusaway.models.* @ExtendWith(TestServerExtension::class) class TripsForRouteServiceTest { diff --git a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/VehiclesForAgencyServiceTest.kt b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/VehiclesForAgencyServiceTest.kt similarity index 79% rename from onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/VehiclesForAgencyServiceTest.kt rename to onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/VehiclesForAgencyServiceTest.kt index b218949..701f148 100644 --- a/onebusaway-sdk-java-core/src/test/kotlin/com/open_transit/api/services/blocking/VehiclesForAgencyServiceTest.kt +++ b/onebusaway-sdk-java-core/src/test/kotlin/org/onebusaway/services/blocking/VehiclesForAgencyServiceTest.kt @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. -package com.open_transit.api.services.blocking +package org.onebusaway.services.blocking -import com.open_transit.api.TestServerExtension -import com.open_transit.api.client.okhttp.OnebusawaySdkOkHttpClient -import com.open_transit.api.models.* import org.junit.jupiter.api.Test import org.junit.jupiter.api.extension.ExtendWith +import org.onebusaway.TestServerExtension +import org.onebusaway.client.okhttp.OnebusawaySdkOkHttpClient +import org.onebusaway.models.* @ExtendWith(TestServerExtension::class) class VehiclesForAgencyServiceTest {