All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mnubo.java.sdk.client.spi.MnuboSDKClient Maven / Gradle / Ivy

There is a newer version: 1.14.4
Show newest version
package com.mnubo.java.sdk.client.spi;

/**
 * Mnubo SDK Client. This interface gives access to all mnubo's sdk clients.
 */
public interface MnuboSDKClient {

    /**
     * Returns SmartObject Client, giving access to handle mnubo smartObjects API(s).
     *
     * @return ObjectSDK interface.
     *
     */
    ObjectsSDK getObjectClient();

    /**
     * Returns Event Client, giving access to handle mnubo events API(s).
     *
     * @return EventSDK interface
     *
     */
    EventsSDK getEventClient();

    /**
     * Returns Owner Client, giving access to handle mnubo Owners API(s).
     *
     * @return OwnerSDK interface
     *
     */
    OwnersSDK getOwnerClient();

    /**
     * Returns Search Client, giving access to handle mnubo Search API(s).
     *
     * @return SearchSDK interface
     *
     */
    SearchSDK getSearchClient();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy