com.arm.mbed.cloud.sdk.billing.model.EndPoints Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mbed-cloud-sdk Show documentation
Show all versions of mbed-cloud-sdk Show documentation
The Pelion Cloud SDK (formerly known as Mbed Cloud SDK) provides a simplified interface to the Pelion Cloud APIs by exposing functionality using conventions and paradigms familiar to Java developers.
package com.arm.mbed.cloud.sdk.billing.model;
import com.arm.mbed.cloud.sdk.annotations.Internal;
import com.arm.mbed.cloud.sdk.annotations.Preamble;
import com.arm.mbed.cloud.sdk.common.AbstractEndpoints;
import com.arm.mbed.cloud.sdk.common.ApiClientWrapper;
import com.arm.mbed.cloud.sdk.common.ConnectionOptions;
import com.arm.mbed.cloud.sdk.internal.billing.api.DefaultApi;
@Preamble(description = "Endpoint for Billing API")
@Internal
public class EndPoints extends AbstractEndpoints {
private final DefaultApi billing;
/**
* Constructor.
*
* @param wrapper
* API client {@link ApiClientWrapper}.
*/
public EndPoints(ApiClientWrapper wrapper) {
super(wrapper);
this.billing = initialiseBilling(wrapper);
}
/**
* Constructor.
*
* @param options
* connection options {@link ConnectionOptions}.
*/
public EndPoints(ConnectionOptions options) {
this(new ApiClientWrapper(options));
}
private DefaultApi initialiseBilling(ApiClientWrapper wrapper) {
return wrapper.createService(DefaultApi.class);
}
public DefaultApi getBilling() {
return billing;
}
}