Class TheTVDBApiImpl

  • All Implemented Interfaces:
    TheTVDBApi

    public class TheTVDBApiImpl
    extends Object
    implements TheTVDBApi
    Implementation of the TheTVDBApi API layout. It provides methods for all sorts of API calls throughout the different API routes. Responses will be returned as mapped Java DTO objects.
    • Constructor Detail

      • TheTVDBApiImpl

        public TheTVDBApiImpl​(@Nonnull
                              String apiKey)
        Creates a new TheTVDBApi instance. The given apiKey must be a valid TheTVDB.com API Key as it will be used for remote service authentication. To authenticate and generate a new session token use the init() or login() method right after creating a new instance of this API.


        NOTE: Objects created with this constructor can not be used for calls to the remote API's /users routes. These calls require extended authentication using an additional userKey and userName.

        Parameters:
        apiKey - Valid TheTVDB.com API-Key
        See Also:
        TheTVDBApiImpl(apiKey, userKey, userName)
      • TheTVDBApiImpl

        public TheTVDBApiImpl​(@Nonnull
                              String apiKey,
                              @Nonnull
                              Proxy proxy)
        Creates a new TheTVDBApi instance. The given apiKey must be a valid TheTVDB.com API Key as it will be used for remote service authentication. To authenticate and generate a new session token use the init() or login() method right after creating a new instance of this API. All communication to the remote API will be forwarded to the given proxy.


        NOTE: Objects created with this constructor can not be used for calls to the remote API's /users routes. These calls require extended authentication using an additional userKey and userName.

        Parameters:
        apiKey - Valid TheTVDB.com API-Key
        proxy - The proxy service to be used for remote API communication
        See Also:
        TheTVDBApiImpl(apiKey, userKey, userName, proxy)
      • TheTVDBApiImpl

        public TheTVDBApiImpl​(@Nonnull
                              String apiKey,
                              @Nonnull
                              String userKey,
                              @Nonnull
                              String userName)
        Creates a new TheTVDBApi instance. The given apiKey must be a valid TheTVDB.com API Key. The userKey and userName must refer to a registered TheTVDB.com user account. The given parameters will be used for the initial remote service authentication. To authenticate and generate a new session token use the init() or login() method right after creating a new instance of this API.
        Parameters:
        apiKey - Valid TheTVDB.com API-Key
        userKey - Valid TheTVDB.com user key (also referred to as "Unique ID")
        userName - Registered TheTVDB.com user name
      • TheTVDBApiImpl

        public TheTVDBApiImpl​(@Nonnull
                              String apiKey,
                              @Nonnull
                              String userKey,
                              @Nonnull
                              String userName,
                              @Nonnull
                              Proxy proxy)
        Creates a new TheTVDBApi instance. The given apiKey must be a valid TheTVDB.com API Key. The userKey and userName must refer to a registered TheTVDB.com user account. The given parameters will be used for the initial remote service authentication. To authenticate and generate a new session token use the init() or login() method right after creating a new instance of this API. All communication to the remote API will be forwarded to the given proxy.
        Parameters:
        apiKey - Valid TheTVDB.com API-Key
        userKey - Valid TheTVDB.com user key (also referred to as "Unique ID")
        userName - Registered TheTVDB.com user name
        proxy - The proxy service to be used for remote API communication