To link the module into your Android application, modify your settings.gradle
and your gradle
build file as described below.
- In
settings.gradle
, include the modulecumulocity-clients-kotlin
. Optionally, you can reference the source code by linking theprojectDir
relative to your module's root directory.
include ':cumulocity-clients-kotlin'
project(":cumulocity-clients-kotlin").projectDir = new File(rootDir, "relative to your projects dir/cumulocity-clients-kotlin")
- Add the module dependency to your applications
build
file:
dependencies {
implementation project(':cumulocity-clients-kotlin')
}
- Make sure to setup the Kotlin gradle plugin in your project's build file:
buildscript {
ext.kotlin_version = "1.4.21"
repositories {
google()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
The cumulocity-clients-kotlin allows custom data models. The following classes are designed to be extensible:
Alarm
,AuditRecord
,CategoryOptions
,CustomProperties
,Event
,ManagedObject
,Measurement
,Operation
Those classes allow to add an arbitrary number of additional properties as a list of key-value pairs. These properties are known as custom fragments and can be of any type. Each custom fragment is identified by a unique name. Thus, developers can propagate their custom fragments using:
Alarm.Serialization.registerAdditionalProperty(typeName: String, type: Class<*>)
Each of the extensible objects contains a dictionary object holding instances of custom fragments. Use the custom fragment's key to access its value.
HTTP error codes will be forwarded and can be accessed using a retrofit2.Response
. Error codes can be retrievied by calling #code()
, respectively #message()
. The response object also allows access to error objects. Here, a so called response body converter needs to be used. In this context the Retrofit
instance allows to access the configured converter. Use the companion object Factory
on each the API interfaces to acces a pre-configured Retrofit.Builder
.
The error object itself can be converted from the response errorBody
:
override fun onResponse(call: Call<T>?, response: Response<T>?) {
// response?.message()
// response?.code()
response?.errorBody()?.let {
val retrofitBuilder: Retrofit.Builder = ...
val converter = retrofitBuilder.build().responseBodyConverter<Error>(Error::class.java, arrayOf())
converter.convert(it)
}
The client sends HTTP requests with the Authorization
header that contains the word Basic
word followed by a space and a base64-encoded string username:password
.
Using Retrofit2, the Authorization
header is added using an okhttp3.Interceptor
.
val clientBuilder: OkHttpClient.Builder = OkHttpClient.Builder()
val authToken = Credentials.basic("username", "password")
val headerAuthorizationInterceptor = Interceptor { chain ->
var request: Request = chain.request()
val headers: Headers = request.headers().newBuilder().add("Authorization", authToken).build()
request = request.newBuilder().headers(headers).build()
chain.proceed(request)
}
clientBuilder.addInterceptor(headerAuthorizationInterceptor)
The customised clientBuilder
can than be passed to any service instance using it's companion
Factory
object, i.e.:
CurrentUserApi.Factory.create("endpoint", clientBuilder)
If you've spotted something that doesn't work as you'd expect, or if you have a new feature you'd like to add, we're happy to accept contributions and bug reports.
For bug reports, please raise an issue directly in this repository by selecting the issues
tab and then clicking the new issue
button. Please ensure that your bug report is as detailed as possible and allows us to reproduce your issue easily.
In the case of new contributions, please create a new branch from the latest version of main
. When your feature is complete and ready to evaluate, raise a new pull request.
These tools are provided as-is and without warranty or support. They do not constitute part of the Software AG product suite. Users are free to use, fork and modify them, subject to the license agreement. While Software AG welcomes contributions, we cannot guarantee to include every contribution in the master project.