Package com.dnanexus

Class DXAPI


  • public final class DXAPI
    extends Object
    Utility class containing low-level wrappers for invoking DNAnexus API methods.
    • Method Detail

      • analysisAddTags

        public static <T> T analysisAddTags​(String objectId,
                                            Class<T> outputClass)
        Invokes the analysisAddTags method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisAddTags

        public static <T> T analysisAddTags​(String objectId,
                                            Object inputObject,
                                            Class<T> outputClass)
        Invokes the analysisAddTags method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisAddTags

        public static <T> T analysisAddTags​(String objectId,
                                            Class<T> outputClass,
                                            DXEnvironment env)
        Invokes the analysisAddTags method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisAddTags

        public static <T> T analysisAddTags​(String objectId,
                                            Object inputObject,
                                            Class<T> outputClass,
                                            DXEnvironment env)
        Invokes the analysisAddTags method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode analysisAddTags​(String objectId)
        Deprecated.
        Use analysisAddTags(String, Class) instead and supply your own class to deserialize to.
        Invokes the analysisAddTags method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode analysisAddTags​(String objectId,
                                                                              com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use analysisAddTags(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the analysisAddTags method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode analysisAddTags​(String objectId,
                                                                              DXEnvironment env)
        Deprecated.
        Use analysisAddTags(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the analysisAddTags method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode analysisAddTags​(String objectId,
                                                                              com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                              DXEnvironment env)
        Deprecated.
        Use analysisAddTags(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the analysisAddTags method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisDescribe

        public static <T> T analysisDescribe​(String objectId,
                                             Class<T> outputClass)
        Invokes the analysisDescribe method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisDescribe

        public static <T> T analysisDescribe​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass)
        Invokes the analysisDescribe method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisDescribe

        public static <T> T analysisDescribe​(String objectId,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the analysisDescribe method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisDescribe

        public static <T> T analysisDescribe​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the analysisDescribe method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode analysisDescribe​(String objectId)
        Deprecated.
        Use analysisDescribe(String, Class) instead and supply your own class to deserialize to.
        Invokes the analysisDescribe method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode analysisDescribe​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use analysisDescribe(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the analysisDescribe method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode analysisDescribe​(String objectId,
                                                                               DXEnvironment env)
        Deprecated.
        Use analysisDescribe(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the analysisDescribe method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode analysisDescribe​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                               DXEnvironment env)
        Deprecated.
        Use analysisDescribe(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the analysisDescribe method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisRemoveTags

        public static <T> T analysisRemoveTags​(String objectId,
                                               Class<T> outputClass)
        Invokes the analysisRemoveTags method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisRemoveTags

        public static <T> T analysisRemoveTags​(String objectId,
                                               Object inputObject,
                                               Class<T> outputClass)
        Invokes the analysisRemoveTags method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisRemoveTags

        public static <T> T analysisRemoveTags​(String objectId,
                                               Class<T> outputClass,
                                               DXEnvironment env)
        Invokes the analysisRemoveTags method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisRemoveTags

        public static <T> T analysisRemoveTags​(String objectId,
                                               Object inputObject,
                                               Class<T> outputClass,
                                               DXEnvironment env)
        Invokes the analysisRemoveTags method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode analysisRemoveTags​(String objectId)
        Deprecated.
        Use analysisRemoveTags(String, Class) instead and supply your own class to deserialize to.
        Invokes the analysisRemoveTags method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode analysisRemoveTags​(String objectId,
                                                                                 com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use analysisRemoveTags(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the analysisRemoveTags method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode analysisRemoveTags​(String objectId,
                                                                                 DXEnvironment env)
        Deprecated.
        Use analysisRemoveTags(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the analysisRemoveTags method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode analysisRemoveTags​(String objectId,
                                                                                 com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                 DXEnvironment env)
        Deprecated.
        Use analysisRemoveTags(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the analysisRemoveTags method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisSetProperties

        public static <T> T analysisSetProperties​(String objectId,
                                                  Class<T> outputClass)
        Invokes the analysisSetProperties method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisSetProperties

        public static <T> T analysisSetProperties​(String objectId,
                                                  Object inputObject,
                                                  Class<T> outputClass)
        Invokes the analysisSetProperties method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisSetProperties

        public static <T> T analysisSetProperties​(String objectId,
                                                  Class<T> outputClass,
                                                  DXEnvironment env)
        Invokes the analysisSetProperties method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisSetProperties

        public static <T> T analysisSetProperties​(String objectId,
                                                  Object inputObject,
                                                  Class<T> outputClass,
                                                  DXEnvironment env)
        Invokes the analysisSetProperties method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode analysisSetProperties​(String objectId)
        Deprecated.
        Use analysisSetProperties(String, Class) instead and supply your own class to deserialize to.
        Invokes the analysisSetProperties method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode analysisSetProperties​(String objectId,
                                                                                    com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use analysisSetProperties(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the analysisSetProperties method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode analysisSetProperties​(String objectId,
                                                                                    DXEnvironment env)
        Deprecated.
        Use analysisSetProperties(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the analysisSetProperties method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode analysisSetProperties​(String objectId,
                                                                                    com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                    DXEnvironment env)
        Deprecated.
        Use analysisSetProperties(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the analysisSetProperties method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisTerminate

        public static <T> T analysisTerminate​(String objectId,
                                              Class<T> outputClass)
        Invokes the analysisTerminate method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisTerminate

        public static <T> T analysisTerminate​(String objectId,
                                              Object inputObject,
                                              Class<T> outputClass)
        Invokes the analysisTerminate method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisTerminate

        public static <T> T analysisTerminate​(String objectId,
                                              Class<T> outputClass,
                                              DXEnvironment env)
        Invokes the analysisTerminate method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisTerminate

        public static <T> T analysisTerminate​(String objectId,
                                              Object inputObject,
                                              Class<T> outputClass,
                                              DXEnvironment env)
        Invokes the analysisTerminate method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisTerminate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode analysisTerminate​(String objectId)
        Deprecated.
        Use analysisTerminate(String, Class) instead and supply your own class to deserialize to.
        Invokes the analysisTerminate method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisTerminate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode analysisTerminate​(String objectId,
                                                                                com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use analysisTerminate(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the analysisTerminate method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisTerminate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode analysisTerminate​(String objectId,
                                                                                DXEnvironment env)
        Deprecated.
        Use analysisTerminate(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the analysisTerminate method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • analysisTerminate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode analysisTerminate​(String objectId,
                                                                                com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                DXEnvironment env)
        Deprecated.
        Use analysisTerminate(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the analysisTerminate method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appAddAuthorizedUsers

        public static <T> T appAddAuthorizedUsers​(String objectId,
                                                  Class<T> outputClass)
        Invokes the appAddAuthorizedUsers method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appAddAuthorizedUsers

        public static <T> T appAddAuthorizedUsers​(String objectId,
                                                  Object inputObject,
                                                  Class<T> outputClass)
        Invokes the appAddAuthorizedUsers method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appAddAuthorizedUsers

        public static <T> T appAddAuthorizedUsers​(String objectId,
                                                  Class<T> outputClass,
                                                  DXEnvironment env)
        Invokes the appAddAuthorizedUsers method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appAddAuthorizedUsers

        public static <T> T appAddAuthorizedUsers​(String objectId,
                                                  Object inputObject,
                                                  Class<T> outputClass,
                                                  DXEnvironment env)
        Invokes the appAddAuthorizedUsers method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appAddAuthorizedUsers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appAddAuthorizedUsers​(String objectId)
        Deprecated.
        Use appAddAuthorizedUsers(String, Class) instead and supply your own class to deserialize to.
        Invokes the appAddAuthorizedUsers method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appAddAuthorizedUsers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appAddAuthorizedUsers​(String objectId,
                                                                                    com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use appAddAuthorizedUsers(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the appAddAuthorizedUsers method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appAddAuthorizedUsers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appAddAuthorizedUsers​(String objectId,
                                                                                    DXEnvironment env)
        Deprecated.
        Use appAddAuthorizedUsers(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appAddAuthorizedUsers method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appAddAuthorizedUsers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appAddAuthorizedUsers​(String objectId,
                                                                                    com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                    DXEnvironment env)
        Deprecated.
        Use appAddAuthorizedUsers(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appAddAuthorizedUsers method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appAddCategories

        public static <T> T appAddCategories​(String objectId,
                                             Class<T> outputClass)
        Invokes the appAddCategories method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appAddCategories

        public static <T> T appAddCategories​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass)
        Invokes the appAddCategories method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appAddCategories

        public static <T> T appAddCategories​(String objectId,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the appAddCategories method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appAddCategories

        public static <T> T appAddCategories​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the appAddCategories method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appAddCategories

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appAddCategories​(String objectId)
        Deprecated.
        Use appAddCategories(String, Class) instead and supply your own class to deserialize to.
        Invokes the appAddCategories method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appAddCategories

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appAddCategories​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use appAddCategories(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the appAddCategories method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appAddCategories

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appAddCategories​(String objectId,
                                                                               DXEnvironment env)
        Deprecated.
        Use appAddCategories(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appAddCategories method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appAddCategories

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appAddCategories​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                               DXEnvironment env)
        Deprecated.
        Use appAddCategories(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appAddCategories method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appAddDevelopers

        public static <T> T appAddDevelopers​(String objectId,
                                             Class<T> outputClass)
        Invokes the appAddDevelopers method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appAddDevelopers

        public static <T> T appAddDevelopers​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass)
        Invokes the appAddDevelopers method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appAddDevelopers

        public static <T> T appAddDevelopers​(String objectId,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the appAddDevelopers method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appAddDevelopers

        public static <T> T appAddDevelopers​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the appAddDevelopers method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appAddDevelopers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appAddDevelopers​(String objectId)
        Deprecated.
        Use appAddDevelopers(String, Class) instead and supply your own class to deserialize to.
        Invokes the appAddDevelopers method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appAddDevelopers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appAddDevelopers​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use appAddDevelopers(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the appAddDevelopers method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appAddDevelopers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appAddDevelopers​(String objectId,
                                                                               DXEnvironment env)
        Deprecated.
        Use appAddDevelopers(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appAddDevelopers method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appAddDevelopers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appAddDevelopers​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                               DXEnvironment env)
        Deprecated.
        Use appAddDevelopers(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appAddDevelopers method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appAddTags

        public static <T> T appAddTags​(String objectId,
                                       Class<T> outputClass)
        Invokes the appAddTags method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appAddTags

        public static <T> T appAddTags​(String objectId,
                                       Object inputObject,
                                       Class<T> outputClass)
        Invokes the appAddTags method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appAddTags

        public static <T> T appAddTags​(String objectId,
                                       Class<T> outputClass,
                                       DXEnvironment env)
        Invokes the appAddTags method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appAddTags

        public static <T> T appAddTags​(String objectId,
                                       Object inputObject,
                                       Class<T> outputClass,
                                       DXEnvironment env)
        Invokes the appAddTags method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appAddTags​(String objectId)
        Deprecated.
        Use appAddTags(String, Class) instead and supply your own class to deserialize to.
        Invokes the appAddTags method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appAddTags​(String objectId,
                                                                         com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use appAddTags(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the appAddTags method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appAddTags​(String objectId,
                                                                         DXEnvironment env)
        Deprecated.
        Use appAddTags(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appAddTags method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appAddTags​(String objectId,
                                                                         com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                         DXEnvironment env)
        Deprecated.
        Use appAddTags(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appAddTags method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appDelete

        public static <T> T appDelete​(String objectId,
                                      Class<T> outputClass)
        Invokes the appDelete method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appDelete

        public static <T> T appDelete​(String objectId,
                                      Object inputObject,
                                      Class<T> outputClass)
        Invokes the appDelete method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appDelete

        public static <T> T appDelete​(String objectId,
                                      Class<T> outputClass,
                                      DXEnvironment env)
        Invokes the appDelete method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appDelete

        public static <T> T appDelete​(String objectId,
                                      Object inputObject,
                                      Class<T> outputClass,
                                      DXEnvironment env)
        Invokes the appDelete method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appDelete

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appDelete​(String objectId)
        Deprecated.
        Use appDelete(String, Class) instead and supply your own class to deserialize to.
        Invokes the appDelete method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appDelete

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appDelete​(String objectId,
                                                                        com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use appDelete(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the appDelete method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appDelete

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appDelete​(String objectId,
                                                                        DXEnvironment env)
        Deprecated.
        Use appDelete(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appDelete method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appDelete

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appDelete​(String objectId,
                                                                        com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                        DXEnvironment env)
        Deprecated.
        Use appDelete(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appDelete method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appDescribe

        public static <T> T appDescribe​(String objectId,
                                        Class<T> outputClass)
        Invokes the appDescribe method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appDescribe

        public static <T> T appDescribe​(String objectId,
                                        Object inputObject,
                                        Class<T> outputClass)
        Invokes the appDescribe method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appDescribe

        public static <T> T appDescribe​(String objectId,
                                        Class<T> outputClass,
                                        DXEnvironment env)
        Invokes the appDescribe method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appDescribe

        public static <T> T appDescribe​(String objectId,
                                        Object inputObject,
                                        Class<T> outputClass,
                                        DXEnvironment env)
        Invokes the appDescribe method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appDescribe​(String objectId)
        Deprecated.
        Use appDescribe(String, Class) instead and supply your own class to deserialize to.
        Invokes the appDescribe method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appDescribe​(String objectId,
                                                                          com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use appDescribe(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the appDescribe method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appDescribe​(String objectId,
                                                                          DXEnvironment env)
        Deprecated.
        Use appDescribe(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appDescribe method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appDescribe​(String objectId,
                                                                          com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                          DXEnvironment env)
        Deprecated.
        Use appDescribe(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appDescribe method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appGet

        public static <T> T appGet​(String objectId,
                                   Class<T> outputClass)
        Invokes the appGet method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appGet

        public static <T> T appGet​(String objectId,
                                   Object inputObject,
                                   Class<T> outputClass)
        Invokes the appGet method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appGet

        public static <T> T appGet​(String objectId,
                                   Class<T> outputClass,
                                   DXEnvironment env)
        Invokes the appGet method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appGet

        public static <T> T appGet​(String objectId,
                                   Object inputObject,
                                   Class<T> outputClass,
                                   DXEnvironment env)
        Invokes the appGet method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appGet

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appGet​(String objectId)
        Deprecated.
        Use appGet(String, Class) instead and supply your own class to deserialize to.
        Invokes the appGet method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appGet

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appGet​(String objectId,
                                                                     com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use appGet(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the appGet method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appGet

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appGet​(String objectId,
                                                                     DXEnvironment env)
        Deprecated.
        Use appGet(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appGet method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appGet

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appGet​(String objectId,
                                                                     com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                     DXEnvironment env)
        Deprecated.
        Use appGet(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appGet method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appInstall

        public static <T> T appInstall​(String objectId,
                                       Class<T> outputClass)
        Invokes the appInstall method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appInstall

        public static <T> T appInstall​(String objectId,
                                       Object inputObject,
                                       Class<T> outputClass)
        Invokes the appInstall method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appInstall

        public static <T> T appInstall​(String objectId,
                                       Class<T> outputClass,
                                       DXEnvironment env)
        Invokes the appInstall method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appInstall

        public static <T> T appInstall​(String objectId,
                                       Object inputObject,
                                       Class<T> outputClass,
                                       DXEnvironment env)
        Invokes the appInstall method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appInstall

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appInstall​(String objectId)
        Deprecated.
        Use appInstall(String, Class) instead and supply your own class to deserialize to.
        Invokes the appInstall method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appInstall

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appInstall​(String objectId,
                                                                         com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use appInstall(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the appInstall method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appInstall

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appInstall​(String objectId,
                                                                         DXEnvironment env)
        Deprecated.
        Use appInstall(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appInstall method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appInstall

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appInstall​(String objectId,
                                                                         com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                         DXEnvironment env)
        Deprecated.
        Use appInstall(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appInstall method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appListAuthorizedUsers

        public static <T> T appListAuthorizedUsers​(String objectId,
                                                   Class<T> outputClass)
        Invokes the appListAuthorizedUsers method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appListAuthorizedUsers

        public static <T> T appListAuthorizedUsers​(String objectId,
                                                   Object inputObject,
                                                   Class<T> outputClass)
        Invokes the appListAuthorizedUsers method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appListAuthorizedUsers

        public static <T> T appListAuthorizedUsers​(String objectId,
                                                   Class<T> outputClass,
                                                   DXEnvironment env)
        Invokes the appListAuthorizedUsers method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appListAuthorizedUsers

        public static <T> T appListAuthorizedUsers​(String objectId,
                                                   Object inputObject,
                                                   Class<T> outputClass,
                                                   DXEnvironment env)
        Invokes the appListAuthorizedUsers method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appListAuthorizedUsers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appListAuthorizedUsers​(String objectId)
        Deprecated.
        Use appListAuthorizedUsers(String, Class) instead and supply your own class to deserialize to.
        Invokes the appListAuthorizedUsers method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appListAuthorizedUsers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appListAuthorizedUsers​(String objectId,
                                                                                     com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use appListAuthorizedUsers(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the appListAuthorizedUsers method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appListAuthorizedUsers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appListAuthorizedUsers​(String objectId,
                                                                                     DXEnvironment env)
        Deprecated.
        Use appListAuthorizedUsers(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appListAuthorizedUsers method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appListAuthorizedUsers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appListAuthorizedUsers​(String objectId,
                                                                                     com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                     DXEnvironment env)
        Deprecated.
        Use appListAuthorizedUsers(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appListAuthorizedUsers method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appListCategories

        public static <T> T appListCategories​(String objectId,
                                              Class<T> outputClass)
        Invokes the appListCategories method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appListCategories

        public static <T> T appListCategories​(String objectId,
                                              Object inputObject,
                                              Class<T> outputClass)
        Invokes the appListCategories method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appListCategories

        public static <T> T appListCategories​(String objectId,
                                              Class<T> outputClass,
                                              DXEnvironment env)
        Invokes the appListCategories method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appListCategories

        public static <T> T appListCategories​(String objectId,
                                              Object inputObject,
                                              Class<T> outputClass,
                                              DXEnvironment env)
        Invokes the appListCategories method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appListCategories

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appListCategories​(String objectId)
        Deprecated.
        Use appListCategories(String, Class) instead and supply your own class to deserialize to.
        Invokes the appListCategories method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appListCategories

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appListCategories​(String objectId,
                                                                                com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use appListCategories(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the appListCategories method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appListCategories

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appListCategories​(String objectId,
                                                                                DXEnvironment env)
        Deprecated.
        Use appListCategories(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appListCategories method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appListCategories

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appListCategories​(String objectId,
                                                                                com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                DXEnvironment env)
        Deprecated.
        Use appListCategories(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appListCategories method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appListDevelopers

        public static <T> T appListDevelopers​(String objectId,
                                              Class<T> outputClass)
        Invokes the appListDevelopers method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appListDevelopers

        public static <T> T appListDevelopers​(String objectId,
                                              Object inputObject,
                                              Class<T> outputClass)
        Invokes the appListDevelopers method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appListDevelopers

        public static <T> T appListDevelopers​(String objectId,
                                              Class<T> outputClass,
                                              DXEnvironment env)
        Invokes the appListDevelopers method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appListDevelopers

        public static <T> T appListDevelopers​(String objectId,
                                              Object inputObject,
                                              Class<T> outputClass,
                                              DXEnvironment env)
        Invokes the appListDevelopers method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appListDevelopers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appListDevelopers​(String objectId)
        Deprecated.
        Use appListDevelopers(String, Class) instead and supply your own class to deserialize to.
        Invokes the appListDevelopers method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appListDevelopers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appListDevelopers​(String objectId,
                                                                                com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use appListDevelopers(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the appListDevelopers method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appListDevelopers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appListDevelopers​(String objectId,
                                                                                DXEnvironment env)
        Deprecated.
        Use appListDevelopers(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appListDevelopers method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appListDevelopers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appListDevelopers​(String objectId,
                                                                                com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                DXEnvironment env)
        Deprecated.
        Use appListDevelopers(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appListDevelopers method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appPublish

        public static <T> T appPublish​(String objectId,
                                       Class<T> outputClass)
        Invokes the appPublish method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appPublish

        public static <T> T appPublish​(String objectId,
                                       Object inputObject,
                                       Class<T> outputClass)
        Invokes the appPublish method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appPublish

        public static <T> T appPublish​(String objectId,
                                       Class<T> outputClass,
                                       DXEnvironment env)
        Invokes the appPublish method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appPublish

        public static <T> T appPublish​(String objectId,
                                       Object inputObject,
                                       Class<T> outputClass,
                                       DXEnvironment env)
        Invokes the appPublish method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appPublish

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appPublish​(String objectId)
        Deprecated.
        Use appPublish(String, Class) instead and supply your own class to deserialize to.
        Invokes the appPublish method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appPublish

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appPublish​(String objectId,
                                                                         com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use appPublish(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the appPublish method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appPublish

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appPublish​(String objectId,
                                                                         DXEnvironment env)
        Deprecated.
        Use appPublish(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appPublish method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appPublish

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appPublish​(String objectId,
                                                                         com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                         DXEnvironment env)
        Deprecated.
        Use appPublish(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appPublish method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRemoveAuthorizedUsers

        public static <T> T appRemoveAuthorizedUsers​(String objectId,
                                                     Class<T> outputClass)
        Invokes the appRemoveAuthorizedUsers method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRemoveAuthorizedUsers

        public static <T> T appRemoveAuthorizedUsers​(String objectId,
                                                     Object inputObject,
                                                     Class<T> outputClass)
        Invokes the appRemoveAuthorizedUsers method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRemoveAuthorizedUsers

        public static <T> T appRemoveAuthorizedUsers​(String objectId,
                                                     Class<T> outputClass,
                                                     DXEnvironment env)
        Invokes the appRemoveAuthorizedUsers method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRemoveAuthorizedUsers

        public static <T> T appRemoveAuthorizedUsers​(String objectId,
                                                     Object inputObject,
                                                     Class<T> outputClass,
                                                     DXEnvironment env)
        Invokes the appRemoveAuthorizedUsers method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRemoveAuthorizedUsers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appRemoveAuthorizedUsers​(String objectId)
        Deprecated.
        Use appRemoveAuthorizedUsers(String, Class) instead and supply your own class to deserialize to.
        Invokes the appRemoveAuthorizedUsers method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRemoveAuthorizedUsers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appRemoveAuthorizedUsers​(String objectId,
                                                                                       com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use appRemoveAuthorizedUsers(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the appRemoveAuthorizedUsers method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRemoveAuthorizedUsers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appRemoveAuthorizedUsers​(String objectId,
                                                                                       DXEnvironment env)
        Deprecated.
        Use appRemoveAuthorizedUsers(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appRemoveAuthorizedUsers method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRemoveAuthorizedUsers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appRemoveAuthorizedUsers​(String objectId,
                                                                                       com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                       DXEnvironment env)
        Deprecated.
        Use appRemoveAuthorizedUsers(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appRemoveAuthorizedUsers method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRemoveCategories

        public static <T> T appRemoveCategories​(String objectId,
                                                Class<T> outputClass)
        Invokes the appRemoveCategories method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRemoveCategories

        public static <T> T appRemoveCategories​(String objectId,
                                                Object inputObject,
                                                Class<T> outputClass)
        Invokes the appRemoveCategories method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRemoveCategories

        public static <T> T appRemoveCategories​(String objectId,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the appRemoveCategories method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRemoveCategories

        public static <T> T appRemoveCategories​(String objectId,
                                                Object inputObject,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the appRemoveCategories method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRemoveCategories

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appRemoveCategories​(String objectId)
        Deprecated.
        Use appRemoveCategories(String, Class) instead and supply your own class to deserialize to.
        Invokes the appRemoveCategories method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRemoveCategories

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appRemoveCategories​(String objectId,
                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use appRemoveCategories(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the appRemoveCategories method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRemoveCategories

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appRemoveCategories​(String objectId,
                                                                                  DXEnvironment env)
        Deprecated.
        Use appRemoveCategories(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appRemoveCategories method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRemoveCategories

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appRemoveCategories​(String objectId,
                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                  DXEnvironment env)
        Deprecated.
        Use appRemoveCategories(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appRemoveCategories method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRemoveDevelopers

        public static <T> T appRemoveDevelopers​(String objectId,
                                                Class<T> outputClass)
        Invokes the appRemoveDevelopers method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRemoveDevelopers

        public static <T> T appRemoveDevelopers​(String objectId,
                                                Object inputObject,
                                                Class<T> outputClass)
        Invokes the appRemoveDevelopers method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRemoveDevelopers

        public static <T> T appRemoveDevelopers​(String objectId,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the appRemoveDevelopers method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRemoveDevelopers

        public static <T> T appRemoveDevelopers​(String objectId,
                                                Object inputObject,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the appRemoveDevelopers method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRemoveDevelopers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appRemoveDevelopers​(String objectId)
        Deprecated.
        Use appRemoveDevelopers(String, Class) instead and supply your own class to deserialize to.
        Invokes the appRemoveDevelopers method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRemoveDevelopers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appRemoveDevelopers​(String objectId,
                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use appRemoveDevelopers(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the appRemoveDevelopers method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRemoveDevelopers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appRemoveDevelopers​(String objectId,
                                                                                  DXEnvironment env)
        Deprecated.
        Use appRemoveDevelopers(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appRemoveDevelopers method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRemoveDevelopers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appRemoveDevelopers​(String objectId,
                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                  DXEnvironment env)
        Deprecated.
        Use appRemoveDevelopers(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appRemoveDevelopers method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRemoveTags

        public static <T> T appRemoveTags​(String objectId,
                                          Class<T> outputClass)
        Invokes the appRemoveTags method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRemoveTags

        public static <T> T appRemoveTags​(String objectId,
                                          Object inputObject,
                                          Class<T> outputClass)
        Invokes the appRemoveTags method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRemoveTags

        public static <T> T appRemoveTags​(String objectId,
                                          Class<T> outputClass,
                                          DXEnvironment env)
        Invokes the appRemoveTags method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRemoveTags

        public static <T> T appRemoveTags​(String objectId,
                                          Object inputObject,
                                          Class<T> outputClass,
                                          DXEnvironment env)
        Invokes the appRemoveTags method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appRemoveTags​(String objectId)
        Deprecated.
        Use appRemoveTags(String, Class) instead and supply your own class to deserialize to.
        Invokes the appRemoveTags method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appRemoveTags​(String objectId,
                                                                            com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use appRemoveTags(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the appRemoveTags method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appRemoveTags​(String objectId,
                                                                            DXEnvironment env)
        Deprecated.
        Use appRemoveTags(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appRemoveTags method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appRemoveTags​(String objectId,
                                                                            com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                            DXEnvironment env)
        Deprecated.
        Use appRemoveTags(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appRemoveTags method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRun

        public static <T> T appRun​(String objectId,
                                   Class<T> outputClass)
        Invokes the appRun method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRun

        public static <T> T appRun​(String objectId,
                                   Object inputObject,
                                   Class<T> outputClass)
        Invokes the appRun method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRun

        public static <T> T appRun​(String objectId,
                                   Class<T> outputClass,
                                   DXEnvironment env)
        Invokes the appRun method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRun

        public static <T> T appRun​(String objectId,
                                   Object inputObject,
                                   Class<T> outputClass,
                                   DXEnvironment env)
        Invokes the appRun method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRun

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appRun​(String objectId)
        Deprecated.
        Use appRun(String, Class) instead and supply your own class to deserialize to.
        Invokes the appRun method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRun

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appRun​(String objectId,
                                                                     com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use appRun(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the appRun method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRun

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appRun​(String objectId,
                                                                     DXEnvironment env)
        Deprecated.
        Use appRun(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appRun method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appRun

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appRun​(String objectId,
                                                                     com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                     DXEnvironment env)
        Deprecated.
        Use appRun(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appRun method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appValidateBatch

        public static <T> T appValidateBatch​(String objectId,
                                             Class<T> outputClass)
        Invokes the appValidateBatch method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appValidateBatch

        public static <T> T appValidateBatch​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass)
        Invokes the appValidateBatch method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appValidateBatch

        public static <T> T appValidateBatch​(String objectId,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the appValidateBatch method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appValidateBatch

        public static <T> T appValidateBatch​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the appValidateBatch method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appValidateBatch

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appValidateBatch​(String objectId)
        Deprecated.
        Use appValidateBatch(String, Class) instead and supply your own class to deserialize to.
        Invokes the appValidateBatch method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appValidateBatch

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appValidateBatch​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use appValidateBatch(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the appValidateBatch method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appValidateBatch

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appValidateBatch​(String objectId,
                                                                               DXEnvironment env)
        Deprecated.
        Use appValidateBatch(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appValidateBatch method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appValidateBatch

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appValidateBatch​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                               DXEnvironment env)
        Deprecated.
        Use appValidateBatch(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appValidateBatch method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appUninstall

        public static <T> T appUninstall​(String objectId,
                                         Class<T> outputClass)
        Invokes the appUninstall method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appUninstall

        public static <T> T appUninstall​(String objectId,
                                         Object inputObject,
                                         Class<T> outputClass)
        Invokes the appUninstall method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appUninstall

        public static <T> T appUninstall​(String objectId,
                                         Class<T> outputClass,
                                         DXEnvironment env)
        Invokes the appUninstall method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appUninstall

        public static <T> T appUninstall​(String objectId,
                                         Object inputObject,
                                         Class<T> outputClass,
                                         DXEnvironment env)
        Invokes the appUninstall method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appUninstall

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appUninstall​(String objectId)
        Deprecated.
        Use appUninstall(String, Class) instead and supply your own class to deserialize to.
        Invokes the appUninstall method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appUninstall

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appUninstall​(String objectId,
                                                                           com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use appUninstall(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the appUninstall method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appUninstall

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appUninstall​(String objectId,
                                                                           DXEnvironment env)
        Deprecated.
        Use appUninstall(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appUninstall method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appUninstall

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appUninstall​(String objectId,
                                                                           com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                           DXEnvironment env)
        Deprecated.
        Use appUninstall(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appUninstall method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appUpdate

        public static <T> T appUpdate​(String objectId,
                                      Class<T> outputClass)
        Invokes the appUpdate method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appUpdate

        public static <T> T appUpdate​(String objectId,
                                      Object inputObject,
                                      Class<T> outputClass)
        Invokes the appUpdate method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appUpdate

        public static <T> T appUpdate​(String objectId,
                                      Class<T> outputClass,
                                      DXEnvironment env)
        Invokes the appUpdate method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appUpdate

        public static <T> T appUpdate​(String objectId,
                                      Object inputObject,
                                      Class<T> outputClass,
                                      DXEnvironment env)
        Invokes the appUpdate method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appUpdate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appUpdate​(String objectId)
        Deprecated.
        Use appUpdate(String, Class) instead and supply your own class to deserialize to.
        Invokes the appUpdate method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appUpdate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appUpdate​(String objectId,
                                                                        com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use appUpdate(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the appUpdate method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appUpdate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appUpdate​(String objectId,
                                                                        DXEnvironment env)
        Deprecated.
        Use appUpdate(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appUpdate method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appUpdate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appUpdate​(String objectId,
                                                                        com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                        DXEnvironment env)
        Deprecated.
        Use appUpdate(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appUpdate method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appNew

        public static <T> T appNew​(Class<T> outputClass)
        Invokes the appNew method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appNew

        public static <T> T appNew​(Class<T> outputClass,
                                   DXEnvironment env)
        Invokes the appNew method with an empty input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appNew

        public static <T> T appNew​(Object inputObject,
                                   Class<T> outputClass)
        Invokes the appNew method with the specified input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appNew

        public static <T> T appNew​(Object inputObject,
                                   Class<T> outputClass,
                                   DXEnvironment env)
        Invokes the appNew method with the specified input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appNew()
        Deprecated.
        Use appNew(Class) instead and supply your own class to deserialize to.
        Invokes the appNew method.

        For more information about this method, see the API specification.

        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appNew​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use appNew(Object, Class) instead and supply your own class to deserialize to.
        Invokes the appNew method with the specified input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appNew​(DXEnvironment env)
        Deprecated.
        Use appNew(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appNew method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appNew​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                     DXEnvironment env)
        Deprecated.
        Use appNew(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appNew method with the specified environment and input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletAddTags

        public static <T> T appletAddTags​(String objectId,
                                          Class<T> outputClass)
        Invokes the appletAddTags method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletAddTags

        public static <T> T appletAddTags​(String objectId,
                                          Object inputObject,
                                          Class<T> outputClass)
        Invokes the appletAddTags method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletAddTags

        public static <T> T appletAddTags​(String objectId,
                                          Class<T> outputClass,
                                          DXEnvironment env)
        Invokes the appletAddTags method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletAddTags

        public static <T> T appletAddTags​(String objectId,
                                          Object inputObject,
                                          Class<T> outputClass,
                                          DXEnvironment env)
        Invokes the appletAddTags method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletAddTags​(String objectId)
        Deprecated.
        Use appletAddTags(String, Class) instead and supply your own class to deserialize to.
        Invokes the appletAddTags method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletAddTags​(String objectId,
                                                                            com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use appletAddTags(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the appletAddTags method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletAddTags​(String objectId,
                                                                            DXEnvironment env)
        Deprecated.
        Use appletAddTags(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appletAddTags method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletAddTags​(String objectId,
                                                                            com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                            DXEnvironment env)
        Deprecated.
        Use appletAddTags(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appletAddTags method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletDescribe

        public static <T> T appletDescribe​(String objectId,
                                           Class<T> outputClass)
        Invokes the appletDescribe method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletDescribe

        public static <T> T appletDescribe​(String objectId,
                                           Object inputObject,
                                           Class<T> outputClass)
        Invokes the appletDescribe method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletDescribe

        public static <T> T appletDescribe​(String objectId,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the appletDescribe method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletDescribe

        public static <T> T appletDescribe​(String objectId,
                                           Object inputObject,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the appletDescribe method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletDescribe​(String objectId)
        Deprecated.
        Use appletDescribe(String, Class) instead and supply your own class to deserialize to.
        Invokes the appletDescribe method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletDescribe​(String objectId,
                                                                             com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use appletDescribe(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the appletDescribe method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletDescribe​(String objectId,
                                                                             DXEnvironment env)
        Deprecated.
        Use appletDescribe(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appletDescribe method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletDescribe​(String objectId,
                                                                             com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                             DXEnvironment env)
        Deprecated.
        Use appletDescribe(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appletDescribe method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletGet

        public static <T> T appletGet​(String objectId,
                                      Class<T> outputClass)
        Invokes the appletGet method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletGet

        public static <T> T appletGet​(String objectId,
                                      Object inputObject,
                                      Class<T> outputClass)
        Invokes the appletGet method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletGet

        public static <T> T appletGet​(String objectId,
                                      Class<T> outputClass,
                                      DXEnvironment env)
        Invokes the appletGet method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletGet

        public static <T> T appletGet​(String objectId,
                                      Object inputObject,
                                      Class<T> outputClass,
                                      DXEnvironment env)
        Invokes the appletGet method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletGet

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletGet​(String objectId)
        Deprecated.
        Use appletGet(String, Class) instead and supply your own class to deserialize to.
        Invokes the appletGet method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletGet

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletGet​(String objectId,
                                                                        com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use appletGet(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the appletGet method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletGet

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletGet​(String objectId,
                                                                        DXEnvironment env)
        Deprecated.
        Use appletGet(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appletGet method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletGet

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletGet​(String objectId,
                                                                        com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                        DXEnvironment env)
        Deprecated.
        Use appletGet(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appletGet method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletGetDetails

        public static <T> T appletGetDetails​(String objectId,
                                             Class<T> outputClass)
        Invokes the appletGetDetails method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletGetDetails

        public static <T> T appletGetDetails​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass)
        Invokes the appletGetDetails method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletGetDetails

        public static <T> T appletGetDetails​(String objectId,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the appletGetDetails method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletGetDetails

        public static <T> T appletGetDetails​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the appletGetDetails method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletGetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletGetDetails​(String objectId)
        Deprecated.
        Use appletGetDetails(String, Class) instead and supply your own class to deserialize to.
        Invokes the appletGetDetails method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletGetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletGetDetails​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use appletGetDetails(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the appletGetDetails method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletGetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletGetDetails​(String objectId,
                                                                               DXEnvironment env)
        Deprecated.
        Use appletGetDetails(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appletGetDetails method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletGetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletGetDetails​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                               DXEnvironment env)
        Deprecated.
        Use appletGetDetails(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appletGetDetails method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletListProjects

        public static <T> T appletListProjects​(String objectId,
                                               Class<T> outputClass)
        Invokes the appletListProjects method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletListProjects

        public static <T> T appletListProjects​(String objectId,
                                               Object inputObject,
                                               Class<T> outputClass)
        Invokes the appletListProjects method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletListProjects

        public static <T> T appletListProjects​(String objectId,
                                               Class<T> outputClass,
                                               DXEnvironment env)
        Invokes the appletListProjects method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletListProjects

        public static <T> T appletListProjects​(String objectId,
                                               Object inputObject,
                                               Class<T> outputClass,
                                               DXEnvironment env)
        Invokes the appletListProjects method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletListProjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletListProjects​(String objectId)
        Deprecated.
        Use appletListProjects(String, Class) instead and supply your own class to deserialize to.
        Invokes the appletListProjects method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletListProjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletListProjects​(String objectId,
                                                                                 com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use appletListProjects(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the appletListProjects method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletListProjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletListProjects​(String objectId,
                                                                                 DXEnvironment env)
        Deprecated.
        Use appletListProjects(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appletListProjects method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletListProjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletListProjects​(String objectId,
                                                                                 com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                 DXEnvironment env)
        Deprecated.
        Use appletListProjects(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appletListProjects method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletRemoveTags

        public static <T> T appletRemoveTags​(String objectId,
                                             Class<T> outputClass)
        Invokes the appletRemoveTags method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletRemoveTags

        public static <T> T appletRemoveTags​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass)
        Invokes the appletRemoveTags method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletRemoveTags

        public static <T> T appletRemoveTags​(String objectId,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the appletRemoveTags method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletRemoveTags

        public static <T> T appletRemoveTags​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the appletRemoveTags method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletRemoveTags​(String objectId)
        Deprecated.
        Use appletRemoveTags(String, Class) instead and supply your own class to deserialize to.
        Invokes the appletRemoveTags method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletRemoveTags​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use appletRemoveTags(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the appletRemoveTags method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletRemoveTags​(String objectId,
                                                                               DXEnvironment env)
        Deprecated.
        Use appletRemoveTags(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appletRemoveTags method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletRemoveTags​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                               DXEnvironment env)
        Deprecated.
        Use appletRemoveTags(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appletRemoveTags method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletRename

        public static <T> T appletRename​(String objectId,
                                         Class<T> outputClass)
        Invokes the appletRename method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletRename

        public static <T> T appletRename​(String objectId,
                                         Object inputObject,
                                         Class<T> outputClass)
        Invokes the appletRename method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletRename

        public static <T> T appletRename​(String objectId,
                                         Class<T> outputClass,
                                         DXEnvironment env)
        Invokes the appletRename method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletRename

        public static <T> T appletRename​(String objectId,
                                         Object inputObject,
                                         Class<T> outputClass,
                                         DXEnvironment env)
        Invokes the appletRename method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletRename

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletRename​(String objectId)
        Deprecated.
        Use appletRename(String, Class) instead and supply your own class to deserialize to.
        Invokes the appletRename method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletRename

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletRename​(String objectId,
                                                                           com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use appletRename(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the appletRename method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletRename

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletRename​(String objectId,
                                                                           DXEnvironment env)
        Deprecated.
        Use appletRename(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appletRename method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletRename

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletRename​(String objectId,
                                                                           com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                           DXEnvironment env)
        Deprecated.
        Use appletRename(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appletRename method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletValidateBatch

        public static <T> T appletValidateBatch​(String objectId,
                                                Class<T> outputClass)
        Invokes the appletValidateBatch method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletValidateBatch

        public static <T> T appletValidateBatch​(String objectId,
                                                Object inputObject,
                                                Class<T> outputClass)
        Invokes the appletValidateBatch method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletValidateBatch

        public static <T> T appletValidateBatch​(String objectId,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the appletValidateBatch method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletValidateBatch

        public static <T> T appletValidateBatch​(String objectId,
                                                Object inputObject,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the appletValidateBatch method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletValidateBatch

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletValidateBatch​(String objectId)
        Deprecated.
        Use appletValidateBatch(String, Class) instead and supply your own class to deserialize to.
        Invokes the appletValidateBatch method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletValidateBatch

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletValidateBatch​(String objectId,
                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use appletValidateBatch(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the appletValidateBatch method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletValidateBatch

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletValidateBatch​(String objectId,
                                                                                  DXEnvironment env)
        Deprecated.
        Use appletValidateBatch(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appletValidateBatch method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletValidateBatch

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletValidateBatch​(String objectId,
                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                  DXEnvironment env)
        Deprecated.
        Use appletValidateBatch(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appletValidateBatch method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletRun

        public static <T> T appletRun​(String objectId,
                                      Class<T> outputClass)
        Invokes the appletRun method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletRun

        public static <T> T appletRun​(String objectId,
                                      Object inputObject,
                                      Class<T> outputClass)
        Invokes the appletRun method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletRun

        public static <T> T appletRun​(String objectId,
                                      Class<T> outputClass,
                                      DXEnvironment env)
        Invokes the appletRun method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletRun

        public static <T> T appletRun​(String objectId,
                                      Object inputObject,
                                      Class<T> outputClass,
                                      DXEnvironment env)
        Invokes the appletRun method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletRun

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletRun​(String objectId)
        Deprecated.
        Use appletRun(String, Class) instead and supply your own class to deserialize to.
        Invokes the appletRun method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletRun

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletRun​(String objectId,
                                                                        com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use appletRun(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the appletRun method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletRun

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletRun​(String objectId,
                                                                        DXEnvironment env)
        Deprecated.
        Use appletRun(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appletRun method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletRun

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletRun​(String objectId,
                                                                        com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                        DXEnvironment env)
        Deprecated.
        Use appletRun(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appletRun method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletSetProperties

        public static <T> T appletSetProperties​(String objectId,
                                                Class<T> outputClass)
        Invokes the appletSetProperties method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletSetProperties

        public static <T> T appletSetProperties​(String objectId,
                                                Object inputObject,
                                                Class<T> outputClass)
        Invokes the appletSetProperties method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletSetProperties

        public static <T> T appletSetProperties​(String objectId,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the appletSetProperties method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletSetProperties

        public static <T> T appletSetProperties​(String objectId,
                                                Object inputObject,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the appletSetProperties method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletSetProperties​(String objectId)
        Deprecated.
        Use appletSetProperties(String, Class) instead and supply your own class to deserialize to.
        Invokes the appletSetProperties method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletSetProperties​(String objectId,
                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use appletSetProperties(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the appletSetProperties method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletSetProperties​(String objectId,
                                                                                  DXEnvironment env)
        Deprecated.
        Use appletSetProperties(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appletSetProperties method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletSetProperties​(String objectId,
                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                  DXEnvironment env)
        Deprecated.
        Use appletSetProperties(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appletSetProperties method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletNew

        public static <T> T appletNew​(Class<T> outputClass)
        Invokes the appletNew method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletNew

        public static <T> T appletNew​(Class<T> outputClass,
                                      DXEnvironment env)
        Invokes the appletNew method with an empty input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletNew

        public static <T> T appletNew​(Object inputObject,
                                      Class<T> outputClass)
        Invokes the appletNew method with the specified input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletNew

        public static <T> T appletNew​(Object inputObject,
                                      Class<T> outputClass,
                                      DXEnvironment env)
        Invokes the appletNew method with the specified input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletNew()
        Deprecated.
        Use appletNew(Class) instead and supply your own class to deserialize to.
        Invokes the appletNew method.

        For more information about this method, see the API specification.

        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletNew​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use appletNew(Object, Class) instead and supply your own class to deserialize to.
        Invokes the appletNew method with the specified input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletNew​(DXEnvironment env)
        Deprecated.
        Use appletNew(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appletNew method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • appletNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode appletNew​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                        DXEnvironment env)
        Deprecated.
        Use appletNew(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the appletNew method with the specified environment and input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerClone

        public static <T> T containerClone​(String objectId,
                                           Class<T> outputClass)
        Invokes the containerClone method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerClone

        public static <T> T containerClone​(String objectId,
                                           Object inputObject,
                                           Class<T> outputClass)
        Invokes the containerClone method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerClone

        public static <T> T containerClone​(String objectId,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the containerClone method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerClone

        public static <T> T containerClone​(String objectId,
                                           Object inputObject,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the containerClone method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerClone

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerClone​(String objectId)
        Deprecated.
        Use containerClone(String, Class) instead and supply your own class to deserialize to.
        Invokes the containerClone method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerClone

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerClone​(String objectId,
                                                                             com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use containerClone(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the containerClone method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerClone

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerClone​(String objectId,
                                                                             DXEnvironment env)
        Deprecated.
        Use containerClone(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the containerClone method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerClone

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerClone​(String objectId,
                                                                             com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                             DXEnvironment env)
        Deprecated.
        Use containerClone(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the containerClone method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerDescribe

        public static <T> T containerDescribe​(String objectId,
                                              Class<T> outputClass)
        Invokes the containerDescribe method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerDescribe

        public static <T> T containerDescribe​(String objectId,
                                              Object inputObject,
                                              Class<T> outputClass)
        Invokes the containerDescribe method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerDescribe

        public static <T> T containerDescribe​(String objectId,
                                              Class<T> outputClass,
                                              DXEnvironment env)
        Invokes the containerDescribe method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerDescribe

        public static <T> T containerDescribe​(String objectId,
                                              Object inputObject,
                                              Class<T> outputClass,
                                              DXEnvironment env)
        Invokes the containerDescribe method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerDescribe​(String objectId)
        Deprecated.
        Use containerDescribe(String, Class) instead and supply your own class to deserialize to.
        Invokes the containerDescribe method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerDescribe​(String objectId,
                                                                                com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use containerDescribe(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the containerDescribe method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerDescribe​(String objectId,
                                                                                DXEnvironment env)
        Deprecated.
        Use containerDescribe(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the containerDescribe method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerDescribe​(String objectId,
                                                                                com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                DXEnvironment env)
        Deprecated.
        Use containerDescribe(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the containerDescribe method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerDestroy

        public static <T> T containerDestroy​(String objectId,
                                             Class<T> outputClass)
        Invokes the containerDestroy method with an empty input, deserializing to an object of the specified class.
        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerDestroy

        public static <T> T containerDestroy​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass)
        Invokes the containerDestroy method with the given input, deserializing to an object of the specified class.
        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerDestroy

        public static <T> T containerDestroy​(String objectId,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the containerDestroy method with an empty input using the given environment, deserializing to an object of the specified class.
        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerDestroy

        public static <T> T containerDestroy​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the containerDestroy method with the given input using the given environment, deserializing to an object of the specified class.
        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerDestroy

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerDestroy​(String objectId)
        Deprecated.
        Use containerDestroy(String, Class) instead and supply your own class to deserialize to.
        Invokes the containerDestroy method.
        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerDestroy

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerDestroy​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use containerDestroy(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the containerDestroy method with the specified parameters.
        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerDestroy

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerDestroy​(String objectId,
                                                                               DXEnvironment env)
        Deprecated.
        Use containerDestroy(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the containerDestroy method with the specified environment.
        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerDestroy

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerDestroy​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                               DXEnvironment env)
        Deprecated.
        Use containerDestroy(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the containerDestroy method with the specified environment and parameters.
        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerListFolder

        public static <T> T containerListFolder​(String objectId,
                                                Class<T> outputClass)
        Invokes the containerListFolder method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerListFolder

        public static <T> T containerListFolder​(String objectId,
                                                Object inputObject,
                                                Class<T> outputClass)
        Invokes the containerListFolder method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerListFolder

        public static <T> T containerListFolder​(String objectId,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the containerListFolder method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerListFolder

        public static <T> T containerListFolder​(String objectId,
                                                Object inputObject,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the containerListFolder method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerListFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerListFolder​(String objectId)
        Deprecated.
        Use containerListFolder(String, Class) instead and supply your own class to deserialize to.
        Invokes the containerListFolder method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerListFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerListFolder​(String objectId,
                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use containerListFolder(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the containerListFolder method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerListFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerListFolder​(String objectId,
                                                                                  DXEnvironment env)
        Deprecated.
        Use containerListFolder(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the containerListFolder method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerListFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerListFolder​(String objectId,
                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                  DXEnvironment env)
        Deprecated.
        Use containerListFolder(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the containerListFolder method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerMove

        public static <T> T containerMove​(String objectId,
                                          Class<T> outputClass)
        Invokes the containerMove method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerMove

        public static <T> T containerMove​(String objectId,
                                          Object inputObject,
                                          Class<T> outputClass)
        Invokes the containerMove method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerMove

        public static <T> T containerMove​(String objectId,
                                          Class<T> outputClass,
                                          DXEnvironment env)
        Invokes the containerMove method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerMove

        public static <T> T containerMove​(String objectId,
                                          Object inputObject,
                                          Class<T> outputClass,
                                          DXEnvironment env)
        Invokes the containerMove method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerMove

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerMove​(String objectId)
        Deprecated.
        Use containerMove(String, Class) instead and supply your own class to deserialize to.
        Invokes the containerMove method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerMove

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerMove​(String objectId,
                                                                            com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use containerMove(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the containerMove method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerMove

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerMove​(String objectId,
                                                                            DXEnvironment env)
        Deprecated.
        Use containerMove(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the containerMove method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerMove

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerMove​(String objectId,
                                                                            com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                            DXEnvironment env)
        Deprecated.
        Use containerMove(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the containerMove method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerNewFolder

        public static <T> T containerNewFolder​(String objectId,
                                               Class<T> outputClass)
        Invokes the containerNewFolder method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerNewFolder

        public static <T> T containerNewFolder​(String objectId,
                                               Object inputObject,
                                               Class<T> outputClass)
        Invokes the containerNewFolder method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerNewFolder

        public static <T> T containerNewFolder​(String objectId,
                                               Class<T> outputClass,
                                               DXEnvironment env)
        Invokes the containerNewFolder method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerNewFolder

        public static <T> T containerNewFolder​(String objectId,
                                               Object inputObject,
                                               Class<T> outputClass,
                                               DXEnvironment env)
        Invokes the containerNewFolder method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerNewFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerNewFolder​(String objectId)
        Deprecated.
        Use containerNewFolder(String, Class) instead and supply your own class to deserialize to.
        Invokes the containerNewFolder method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerNewFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerNewFolder​(String objectId,
                                                                                 com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use containerNewFolder(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the containerNewFolder method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerNewFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerNewFolder​(String objectId,
                                                                                 DXEnvironment env)
        Deprecated.
        Use containerNewFolder(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the containerNewFolder method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerNewFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerNewFolder​(String objectId,
                                                                                 com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                 DXEnvironment env)
        Deprecated.
        Use containerNewFolder(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the containerNewFolder method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerRemoveFolder

        public static <T> T containerRemoveFolder​(String objectId,
                                                  Class<T> outputClass)
        Invokes the containerRemoveFolder method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerRemoveFolder

        public static <T> T containerRemoveFolder​(String objectId,
                                                  Object inputObject,
                                                  Class<T> outputClass)
        Invokes the containerRemoveFolder method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerRemoveFolder

        public static <T> T containerRemoveFolder​(String objectId,
                                                  Class<T> outputClass,
                                                  DXEnvironment env)
        Invokes the containerRemoveFolder method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerRemoveFolder

        public static <T> T containerRemoveFolder​(String objectId,
                                                  Object inputObject,
                                                  Class<T> outputClass,
                                                  DXEnvironment env)
        Invokes the containerRemoveFolder method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerRemoveFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerRemoveFolder​(String objectId)
        Deprecated.
        Use containerRemoveFolder(String, Class) instead and supply your own class to deserialize to.
        Invokes the containerRemoveFolder method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerRemoveFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerRemoveFolder​(String objectId,
                                                                                    com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use containerRemoveFolder(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the containerRemoveFolder method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerRemoveFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerRemoveFolder​(String objectId,
                                                                                    DXEnvironment env)
        Deprecated.
        Use containerRemoveFolder(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the containerRemoveFolder method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerRemoveFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerRemoveFolder​(String objectId,
                                                                                    com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                    DXEnvironment env)
        Deprecated.
        Use containerRemoveFolder(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the containerRemoveFolder method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerRemoveObjects

        public static <T> T containerRemoveObjects​(String objectId,
                                                   Class<T> outputClass)
        Invokes the containerRemoveObjects method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerRemoveObjects

        public static <T> T containerRemoveObjects​(String objectId,
                                                   Object inputObject,
                                                   Class<T> outputClass)
        Invokes the containerRemoveObjects method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerRemoveObjects

        public static <T> T containerRemoveObjects​(String objectId,
                                                   Class<T> outputClass,
                                                   DXEnvironment env)
        Invokes the containerRemoveObjects method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerRemoveObjects

        public static <T> T containerRemoveObjects​(String objectId,
                                                   Object inputObject,
                                                   Class<T> outputClass,
                                                   DXEnvironment env)
        Invokes the containerRemoveObjects method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerRemoveObjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerRemoveObjects​(String objectId)
        Deprecated.
        Use containerRemoveObjects(String, Class) instead and supply your own class to deserialize to.
        Invokes the containerRemoveObjects method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerRemoveObjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerRemoveObjects​(String objectId,
                                                                                     com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use containerRemoveObjects(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the containerRemoveObjects method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerRemoveObjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerRemoveObjects​(String objectId,
                                                                                     DXEnvironment env)
        Deprecated.
        Use containerRemoveObjects(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the containerRemoveObjects method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerRemoveObjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerRemoveObjects​(String objectId,
                                                                                     com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                     DXEnvironment env)
        Deprecated.
        Use containerRemoveObjects(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the containerRemoveObjects method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerRenameFolder

        public static <T> T containerRenameFolder​(String objectId,
                                                  Class<T> outputClass)
        Invokes the containerRenameFolder method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerRenameFolder

        public static <T> T containerRenameFolder​(String objectId,
                                                  Object inputObject,
                                                  Class<T> outputClass)
        Invokes the containerRenameFolder method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerRenameFolder

        public static <T> T containerRenameFolder​(String objectId,
                                                  Class<T> outputClass,
                                                  DXEnvironment env)
        Invokes the containerRenameFolder method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerRenameFolder

        public static <T> T containerRenameFolder​(String objectId,
                                                  Object inputObject,
                                                  Class<T> outputClass,
                                                  DXEnvironment env)
        Invokes the containerRenameFolder method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerRenameFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerRenameFolder​(String objectId)
        Deprecated.
        Use containerRenameFolder(String, Class) instead and supply your own class to deserialize to.
        Invokes the containerRenameFolder method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerRenameFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerRenameFolder​(String objectId,
                                                                                    com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use containerRenameFolder(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the containerRenameFolder method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerRenameFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerRenameFolder​(String objectId,
                                                                                    DXEnvironment env)
        Deprecated.
        Use containerRenameFolder(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the containerRenameFolder method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • containerRenameFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode containerRenameFolder​(String objectId,
                                                                                    com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                    DXEnvironment env)
        Deprecated.
        Use containerRenameFolder(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the containerRenameFolder method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseAddTags

        public static <T> T databaseAddTags​(String objectId,
                                            Class<T> outputClass)
        Invokes the databaseAddTags method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseAddTags

        public static <T> T databaseAddTags​(String objectId,
                                            Object inputObject,
                                            Class<T> outputClass)
        Invokes the databaseAddTags method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseAddTags

        public static <T> T databaseAddTags​(String objectId,
                                            Class<T> outputClass,
                                            DXEnvironment env)
        Invokes the databaseAddTags method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseAddTags

        public static <T> T databaseAddTags​(String objectId,
                                            Object inputObject,
                                            Class<T> outputClass,
                                            DXEnvironment env)
        Invokes the databaseAddTags method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseAddTags​(String objectId)
        Deprecated.
        Use databaseAddTags(String, Class) instead and supply your own class to deserialize to.
        Invokes the databaseAddTags method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseAddTags​(String objectId,
                                                                              com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use databaseAddTags(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the databaseAddTags method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseAddTags​(String objectId,
                                                                              DXEnvironment env)
        Deprecated.
        Use databaseAddTags(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the databaseAddTags method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseAddTags​(String objectId,
                                                                              com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                              DXEnvironment env)
        Deprecated.
        Use databaseAddTags(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the databaseAddTags method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseAddTypes

        public static <T> T databaseAddTypes​(String objectId,
                                             Class<T> outputClass)
        Invokes the databaseAddTypes method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseAddTypes

        public static <T> T databaseAddTypes​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass)
        Invokes the databaseAddTypes method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseAddTypes

        public static <T> T databaseAddTypes​(String objectId,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the databaseAddTypes method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseAddTypes

        public static <T> T databaseAddTypes​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the databaseAddTypes method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseAddTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseAddTypes​(String objectId)
        Deprecated.
        Use databaseAddTypes(String, Class) instead and supply your own class to deserialize to.
        Invokes the databaseAddTypes method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseAddTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseAddTypes​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use databaseAddTypes(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the databaseAddTypes method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseAddTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseAddTypes​(String objectId,
                                                                               DXEnvironment env)
        Deprecated.
        Use databaseAddTypes(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the databaseAddTypes method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseAddTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseAddTypes​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                               DXEnvironment env)
        Deprecated.
        Use databaseAddTypes(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the databaseAddTypes method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseClose

        public static <T> T databaseClose​(String objectId,
                                          Class<T> outputClass)
        Invokes the databaseClose method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseClose

        public static <T> T databaseClose​(String objectId,
                                          Object inputObject,
                                          Class<T> outputClass)
        Invokes the databaseClose method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseClose

        public static <T> T databaseClose​(String objectId,
                                          Class<T> outputClass,
                                          DXEnvironment env)
        Invokes the databaseClose method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseClose

        public static <T> T databaseClose​(String objectId,
                                          Object inputObject,
                                          Class<T> outputClass,
                                          DXEnvironment env)
        Invokes the databaseClose method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseClose

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseClose​(String objectId)
        Deprecated.
        Use databaseClose(String, Class) instead and supply your own class to deserialize to.
        Invokes the databaseClose method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseClose

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseClose​(String objectId,
                                                                            com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use databaseClose(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the databaseClose method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseClose

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseClose​(String objectId,
                                                                            DXEnvironment env)
        Deprecated.
        Use databaseClose(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the databaseClose method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseClose

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseClose​(String objectId,
                                                                            com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                            DXEnvironment env)
        Deprecated.
        Use databaseClose(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the databaseClose method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseDescribe

        public static <T> T databaseDescribe​(String objectId,
                                             Class<T> outputClass)
        Invokes the databaseDescribe method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseDescribe

        public static <T> T databaseDescribe​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass)
        Invokes the databaseDescribe method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseDescribe

        public static <T> T databaseDescribe​(String objectId,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the databaseDescribe method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseDescribe

        public static <T> T databaseDescribe​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the databaseDescribe method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseDescribe​(String objectId)
        Deprecated.
        Use databaseDescribe(String, Class) instead and supply your own class to deserialize to.
        Invokes the databaseDescribe method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseDescribe​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use databaseDescribe(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the databaseDescribe method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseDescribe​(String objectId,
                                                                               DXEnvironment env)
        Deprecated.
        Use databaseDescribe(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the databaseDescribe method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseDescribe​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                               DXEnvironment env)
        Deprecated.
        Use databaseDescribe(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the databaseDescribe method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseGetDetails

        public static <T> T databaseGetDetails​(String objectId,
                                               Class<T> outputClass)
        Invokes the databaseGetDetails method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseGetDetails

        public static <T> T databaseGetDetails​(String objectId,
                                               Object inputObject,
                                               Class<T> outputClass)
        Invokes the databaseGetDetails method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseGetDetails

        public static <T> T databaseGetDetails​(String objectId,
                                               Class<T> outputClass,
                                               DXEnvironment env)
        Invokes the databaseGetDetails method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseGetDetails

        public static <T> T databaseGetDetails​(String objectId,
                                               Object inputObject,
                                               Class<T> outputClass,
                                               DXEnvironment env)
        Invokes the databaseGetDetails method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseGetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseGetDetails​(String objectId)
        Deprecated.
        Use databaseGetDetails(String, Class) instead and supply your own class to deserialize to.
        Invokes the databaseGetDetails method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseGetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseGetDetails​(String objectId,
                                                                                 com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use databaseGetDetails(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the databaseGetDetails method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseGetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseGetDetails​(String objectId,
                                                                                 DXEnvironment env)
        Deprecated.
        Use databaseGetDetails(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the databaseGetDetails method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseGetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseGetDetails​(String objectId,
                                                                                 com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                 DXEnvironment env)
        Deprecated.
        Use databaseGetDetails(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the databaseGetDetails method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseListProjects

        public static <T> T databaseListProjects​(String objectId,
                                                 Class<T> outputClass)
        Invokes the databaseListProjects method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseListProjects

        public static <T> T databaseListProjects​(String objectId,
                                                 Object inputObject,
                                                 Class<T> outputClass)
        Invokes the databaseListProjects method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseListProjects

        public static <T> T databaseListProjects​(String objectId,
                                                 Class<T> outputClass,
                                                 DXEnvironment env)
        Invokes the databaseListProjects method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseListProjects

        public static <T> T databaseListProjects​(String objectId,
                                                 Object inputObject,
                                                 Class<T> outputClass,
                                                 DXEnvironment env)
        Invokes the databaseListProjects method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseListProjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseListProjects​(String objectId)
        Deprecated.
        Use databaseListProjects(String, Class) instead and supply your own class to deserialize to.
        Invokes the databaseListProjects method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseListProjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseListProjects​(String objectId,
                                                                                   com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use databaseListProjects(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the databaseListProjects method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseListProjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseListProjects​(String objectId,
                                                                                   DXEnvironment env)
        Deprecated.
        Use databaseListProjects(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the databaseListProjects method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseListProjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseListProjects​(String objectId,
                                                                                   com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                   DXEnvironment env)
        Deprecated.
        Use databaseListProjects(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the databaseListProjects method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseRelocate

        public static <T> T databaseRelocate​(String objectId,
                                             Class<T> outputClass)
        Invokes the databaseRelocate method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseRelocate

        public static <T> T databaseRelocate​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass)
        Invokes the databaseRelocate method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseRelocate

        public static <T> T databaseRelocate​(String objectId,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the databaseRelocate method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseRelocate

        public static <T> T databaseRelocate​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the databaseRelocate method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseRelocate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseRelocate​(String objectId)
        Deprecated.
        Use databaseRelocate(String, Class) instead and supply your own class to deserialize to.
        Invokes the databaseRelocate method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseRelocate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseRelocate​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use databaseRelocate(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the databaseRelocate method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseRelocate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseRelocate​(String objectId,
                                                                               DXEnvironment env)
        Deprecated.
        Use databaseRelocate(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the databaseRelocate method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseRelocate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseRelocate​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                               DXEnvironment env)
        Deprecated.
        Use databaseRelocate(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the databaseRelocate method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseRemoveTags

        public static <T> T databaseRemoveTags​(String objectId,
                                               Class<T> outputClass)
        Invokes the databaseRemoveTags method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseRemoveTags

        public static <T> T databaseRemoveTags​(String objectId,
                                               Object inputObject,
                                               Class<T> outputClass)
        Invokes the databaseRemoveTags method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseRemoveTags

        public static <T> T databaseRemoveTags​(String objectId,
                                               Class<T> outputClass,
                                               DXEnvironment env)
        Invokes the databaseRemoveTags method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseRemoveTags

        public static <T> T databaseRemoveTags​(String objectId,
                                               Object inputObject,
                                               Class<T> outputClass,
                                               DXEnvironment env)
        Invokes the databaseRemoveTags method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseRemoveTags​(String objectId)
        Deprecated.
        Use databaseRemoveTags(String, Class) instead and supply your own class to deserialize to.
        Invokes the databaseRemoveTags method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseRemoveTags​(String objectId,
                                                                                 com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use databaseRemoveTags(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the databaseRemoveTags method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseRemoveTags​(String objectId,
                                                                                 DXEnvironment env)
        Deprecated.
        Use databaseRemoveTags(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the databaseRemoveTags method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseRemoveTags​(String objectId,
                                                                                 com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                 DXEnvironment env)
        Deprecated.
        Use databaseRemoveTags(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the databaseRemoveTags method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseRemoveTypes

        public static <T> T databaseRemoveTypes​(String objectId,
                                                Class<T> outputClass)
        Invokes the databaseRemoveTypes method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseRemoveTypes

        public static <T> T databaseRemoveTypes​(String objectId,
                                                Object inputObject,
                                                Class<T> outputClass)
        Invokes the databaseRemoveTypes method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseRemoveTypes

        public static <T> T databaseRemoveTypes​(String objectId,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the databaseRemoveTypes method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseRemoveTypes

        public static <T> T databaseRemoveTypes​(String objectId,
                                                Object inputObject,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the databaseRemoveTypes method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseRemoveTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseRemoveTypes​(String objectId)
        Deprecated.
        Use databaseRemoveTypes(String, Class) instead and supply your own class to deserialize to.
        Invokes the databaseRemoveTypes method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseRemoveTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseRemoveTypes​(String objectId,
                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use databaseRemoveTypes(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the databaseRemoveTypes method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseRemoveTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseRemoveTypes​(String objectId,
                                                                                  DXEnvironment env)
        Deprecated.
        Use databaseRemoveTypes(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the databaseRemoveTypes method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseRemoveTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseRemoveTypes​(String objectId,
                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                  DXEnvironment env)
        Deprecated.
        Use databaseRemoveTypes(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the databaseRemoveTypes method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseRename

        public static <T> T databaseRename​(String objectId,
                                           Class<T> outputClass)
        Invokes the databaseRename method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseRename

        public static <T> T databaseRename​(String objectId,
                                           Object inputObject,
                                           Class<T> outputClass)
        Invokes the databaseRename method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseRename

        public static <T> T databaseRename​(String objectId,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the databaseRename method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseRename

        public static <T> T databaseRename​(String objectId,
                                           Object inputObject,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the databaseRename method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseRename

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseRename​(String objectId)
        Deprecated.
        Use databaseRename(String, Class) instead and supply your own class to deserialize to.
        Invokes the databaseRename method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseRename

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseRename​(String objectId,
                                                                             com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use databaseRename(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the databaseRename method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseRename

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseRename​(String objectId,
                                                                             DXEnvironment env)
        Deprecated.
        Use databaseRename(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the databaseRename method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseRename

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseRename​(String objectId,
                                                                             com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                             DXEnvironment env)
        Deprecated.
        Use databaseRename(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the databaseRename method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseSetDetails

        public static <T> T databaseSetDetails​(String objectId,
                                               Class<T> outputClass)
        Invokes the databaseSetDetails method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseSetDetails

        public static <T> T databaseSetDetails​(String objectId,
                                               Object inputObject,
                                               Class<T> outputClass)
        Invokes the databaseSetDetails method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseSetDetails

        public static <T> T databaseSetDetails​(String objectId,
                                               Class<T> outputClass,
                                               DXEnvironment env)
        Invokes the databaseSetDetails method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseSetDetails

        public static <T> T databaseSetDetails​(String objectId,
                                               Object inputObject,
                                               Class<T> outputClass,
                                               DXEnvironment env)
        Invokes the databaseSetDetails method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseSetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseSetDetails​(String objectId)
        Deprecated.
        Use databaseSetDetails(String, Class) instead and supply your own class to deserialize to.
        Invokes the databaseSetDetails method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseSetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseSetDetails​(String objectId,
                                                                                 com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use databaseSetDetails(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the databaseSetDetails method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseSetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseSetDetails​(String objectId,
                                                                                 DXEnvironment env)
        Deprecated.
        Use databaseSetDetails(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the databaseSetDetails method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseSetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseSetDetails​(String objectId,
                                                                                 com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                 DXEnvironment env)
        Deprecated.
        Use databaseSetDetails(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the databaseSetDetails method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseSetProperties

        public static <T> T databaseSetProperties​(String objectId,
                                                  Class<T> outputClass)
        Invokes the databaseSetProperties method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseSetProperties

        public static <T> T databaseSetProperties​(String objectId,
                                                  Object inputObject,
                                                  Class<T> outputClass)
        Invokes the databaseSetProperties method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseSetProperties

        public static <T> T databaseSetProperties​(String objectId,
                                                  Class<T> outputClass,
                                                  DXEnvironment env)
        Invokes the databaseSetProperties method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseSetProperties

        public static <T> T databaseSetProperties​(String objectId,
                                                  Object inputObject,
                                                  Class<T> outputClass,
                                                  DXEnvironment env)
        Invokes the databaseSetProperties method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseSetProperties​(String objectId)
        Deprecated.
        Use databaseSetProperties(String, Class) instead and supply your own class to deserialize to.
        Invokes the databaseSetProperties method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseSetProperties​(String objectId,
                                                                                    com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use databaseSetProperties(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the databaseSetProperties method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseSetProperties​(String objectId,
                                                                                    DXEnvironment env)
        Deprecated.
        Use databaseSetProperties(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the databaseSetProperties method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseSetProperties​(String objectId,
                                                                                    com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                    DXEnvironment env)
        Deprecated.
        Use databaseSetProperties(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the databaseSetProperties method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseSetVisibility

        public static <T> T databaseSetVisibility​(String objectId,
                                                  Class<T> outputClass)
        Invokes the databaseSetVisibility method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseSetVisibility

        public static <T> T databaseSetVisibility​(String objectId,
                                                  Object inputObject,
                                                  Class<T> outputClass)
        Invokes the databaseSetVisibility method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseSetVisibility

        public static <T> T databaseSetVisibility​(String objectId,
                                                  Class<T> outputClass,
                                                  DXEnvironment env)
        Invokes the databaseSetVisibility method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseSetVisibility

        public static <T> T databaseSetVisibility​(String objectId,
                                                  Object inputObject,
                                                  Class<T> outputClass,
                                                  DXEnvironment env)
        Invokes the databaseSetVisibility method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseSetVisibility

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseSetVisibility​(String objectId)
        Deprecated.
        Use databaseSetVisibility(String, Class) instead and supply your own class to deserialize to.
        Invokes the databaseSetVisibility method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseSetVisibility

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseSetVisibility​(String objectId,
                                                                                    com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use databaseSetVisibility(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the databaseSetVisibility method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseSetVisibility

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseSetVisibility​(String objectId,
                                                                                    DXEnvironment env)
        Deprecated.
        Use databaseSetVisibility(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the databaseSetVisibility method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseSetVisibility

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseSetVisibility​(String objectId,
                                                                                    com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                    DXEnvironment env)
        Deprecated.
        Use databaseSetVisibility(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the databaseSetVisibility method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseDownloadFile

        public static <T> T databaseDownloadFile​(String objectId,
                                                 Class<T> outputClass)
        Invokes the databaseDownloadFile method with an empty input, deserializing to an object of the specified class.
        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseDownloadFile

        public static <T> T databaseDownloadFile​(String objectId,
                                                 Object inputObject,
                                                 Class<T> outputClass)
        Invokes the databaseDownloadFile method with the given input, deserializing to an object of the specified class.
        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseDownloadFile

        public static <T> T databaseDownloadFile​(String objectId,
                                                 Class<T> outputClass,
                                                 DXEnvironment env)
        Invokes the databaseDownloadFile method with an empty input using the given environment, deserializing to an object of the specified class.
        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseDownloadFile

        public static <T> T databaseDownloadFile​(String objectId,
                                                 Object inputObject,
                                                 Class<T> outputClass,
                                                 DXEnvironment env)
        Invokes the databaseDownloadFile method with the given input using the given environment, deserializing to an object of the specified class.
        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseDownloadFile

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseDownloadFile​(String objectId)
        Deprecated.
        Use databaseDownloadFile(String, Class) instead and supply your own class to deserialize to.
        Invokes the databaseDownloadFile method.
        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseDownloadFile

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseDownloadFile​(String objectId,
                                                                                   com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use databaseDownloadFile(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the databaseDownloadFile method with the specified parameters.
        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseDownloadFile

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseDownloadFile​(String objectId,
                                                                                   DXEnvironment env)
        Deprecated.
        Use databaseDownloadFile(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the databaseDownloadFile method with the specified environment.
        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseDownloadFile

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseDownloadFile​(String objectId,
                                                                                   com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                   DXEnvironment env)
        Deprecated.
        Use databaseDownloadFile(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the databaseDownloadFile method with the specified environment and parameters.
        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseListFolder

        public static <T> T databaseListFolder​(String objectId,
                                               Class<T> outputClass)
        Invokes the databaseListFolder method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseListFolder

        public static <T> T databaseListFolder​(String objectId,
                                               Object inputObject,
                                               Class<T> outputClass)
        Invokes the databaseListFolder method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseListFolder

        public static <T> T databaseListFolder​(String objectId,
                                               Class<T> outputClass,
                                               DXEnvironment env)
        Invokes the databaseListFolder method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseListFolder

        public static <T> T databaseListFolder​(String objectId,
                                               Object inputObject,
                                               Class<T> outputClass,
                                               DXEnvironment env)
        Invokes the databaseListFolder method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseListFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseListFolder​(String objectId)
        Deprecated.
        Use databaseListFolder(String, Class) instead and supply your own class to deserialize to.
        Invokes the databaseListFolder method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseListFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseListFolder​(String objectId,
                                                                                 com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use databaseListFolder(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the databaseListFolder method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseListFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseListFolder​(String objectId,
                                                                                 DXEnvironment env)
        Deprecated.
        Use databaseListFolder(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the databaseListFolder method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • databaseListFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode databaseListFolder​(String objectId,
                                                                                 com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                 DXEnvironment env)
        Deprecated.
        Use databaseListFolder(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the databaseListFolder method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterAddTags

        public static <T> T dbclusterAddTags​(String objectId,
                                             Class<T> outputClass)
        Invokes the dbclusterAddTags method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterAddTags

        public static <T> T dbclusterAddTags​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass)
        Invokes the dbclusterAddTags method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterAddTags

        public static <T> T dbclusterAddTags​(String objectId,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the dbclusterAddTags method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterAddTags

        public static <T> T dbclusterAddTags​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the dbclusterAddTags method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterAddTags​(String objectId)
        Deprecated.
        Use dbclusterAddTags(String, Class) instead and supply your own class to deserialize to.
        Invokes the dbclusterAddTags method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterAddTags​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use dbclusterAddTags(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the dbclusterAddTags method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterAddTags​(String objectId,
                                                                               DXEnvironment env)
        Deprecated.
        Use dbclusterAddTags(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the dbclusterAddTags method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterAddTags​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                               DXEnvironment env)
        Deprecated.
        Use dbclusterAddTags(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the dbclusterAddTags method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterAddTypes

        public static <T> T dbclusterAddTypes​(String objectId,
                                              Class<T> outputClass)
        Invokes the dbclusterAddTypes method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterAddTypes

        public static <T> T dbclusterAddTypes​(String objectId,
                                              Object inputObject,
                                              Class<T> outputClass)
        Invokes the dbclusterAddTypes method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterAddTypes

        public static <T> T dbclusterAddTypes​(String objectId,
                                              Class<T> outputClass,
                                              DXEnvironment env)
        Invokes the dbclusterAddTypes method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterAddTypes

        public static <T> T dbclusterAddTypes​(String objectId,
                                              Object inputObject,
                                              Class<T> outputClass,
                                              DXEnvironment env)
        Invokes the dbclusterAddTypes method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterAddTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterAddTypes​(String objectId)
        Deprecated.
        Use dbclusterAddTypes(String, Class) instead and supply your own class to deserialize to.
        Invokes the dbclusterAddTypes method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterAddTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterAddTypes​(String objectId,
                                                                                com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use dbclusterAddTypes(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the dbclusterAddTypes method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterAddTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterAddTypes​(String objectId,
                                                                                DXEnvironment env)
        Deprecated.
        Use dbclusterAddTypes(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the dbclusterAddTypes method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterAddTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterAddTypes​(String objectId,
                                                                                com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                DXEnvironment env)
        Deprecated.
        Use dbclusterAddTypes(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the dbclusterAddTypes method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterDescribe

        public static <T> T dbclusterDescribe​(String objectId,
                                              Class<T> outputClass)
        Invokes the dbclusterDescribe method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterDescribe

        public static <T> T dbclusterDescribe​(String objectId,
                                              Object inputObject,
                                              Class<T> outputClass)
        Invokes the dbclusterDescribe method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterDescribe

        public static <T> T dbclusterDescribe​(String objectId,
                                              Class<T> outputClass,
                                              DXEnvironment env)
        Invokes the dbclusterDescribe method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterDescribe

        public static <T> T dbclusterDescribe​(String objectId,
                                              Object inputObject,
                                              Class<T> outputClass,
                                              DXEnvironment env)
        Invokes the dbclusterDescribe method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterDescribe​(String objectId)
        Deprecated.
        Use dbclusterDescribe(String, Class) instead and supply your own class to deserialize to.
        Invokes the dbclusterDescribe method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterDescribe​(String objectId,
                                                                                com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use dbclusterDescribe(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the dbclusterDescribe method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterDescribe​(String objectId,
                                                                                DXEnvironment env)
        Deprecated.
        Use dbclusterDescribe(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the dbclusterDescribe method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterDescribe​(String objectId,
                                                                                com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                DXEnvironment env)
        Deprecated.
        Use dbclusterDescribe(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the dbclusterDescribe method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterGetDetails

        public static <T> T dbclusterGetDetails​(String objectId,
                                                Class<T> outputClass)
        Invokes the dbclusterGetDetails method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterGetDetails

        public static <T> T dbclusterGetDetails​(String objectId,
                                                Object inputObject,
                                                Class<T> outputClass)
        Invokes the dbclusterGetDetails method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterGetDetails

        public static <T> T dbclusterGetDetails​(String objectId,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the dbclusterGetDetails method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterGetDetails

        public static <T> T dbclusterGetDetails​(String objectId,
                                                Object inputObject,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the dbclusterGetDetails method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterGetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterGetDetails​(String objectId)
        Deprecated.
        Use dbclusterGetDetails(String, Class) instead and supply your own class to deserialize to.
        Invokes the dbclusterGetDetails method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterGetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterGetDetails​(String objectId,
                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use dbclusterGetDetails(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the dbclusterGetDetails method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterGetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterGetDetails​(String objectId,
                                                                                  DXEnvironment env)
        Deprecated.
        Use dbclusterGetDetails(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the dbclusterGetDetails method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterGetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterGetDetails​(String objectId,
                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                  DXEnvironment env)
        Deprecated.
        Use dbclusterGetDetails(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the dbclusterGetDetails method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterNew

        public static <T> T dbclusterNew​(Class<T> outputClass)
        Invokes the dbclusterNew method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterNew

        public static <T> T dbclusterNew​(Class<T> outputClass,
                                         DXEnvironment env)
        Invokes the dbclusterNew method with an empty input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterNew

        public static <T> T dbclusterNew​(Object inputObject,
                                         Class<T> outputClass)
        Invokes the dbclusterNew method with the specified input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterNew

        public static <T> T dbclusterNew​(Object inputObject,
                                         Class<T> outputClass,
                                         DXEnvironment env)
        Invokes the dbclusterNew method with the specified input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterNew()
        Deprecated.
        Use dbclusterNew(Class) instead and supply your own class to deserialize to.
        Invokes the dbclusterNew method.

        For more information about this method, see the API specification.

        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterNew​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use dbclusterNew(Object, Class) instead and supply your own class to deserialize to.
        Invokes the dbclusterNew method with the specified input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterNew​(DXEnvironment env)
        Deprecated.
        Use dbclusterNew(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the dbclusterNew method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterNew​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                           DXEnvironment env)
        Deprecated.
        Use dbclusterNew(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the dbclusterNew method with the specified environment and input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterRemoveTags

        public static <T> T dbclusterRemoveTags​(String objectId,
                                                Class<T> outputClass)
        Invokes the dbclusterRemoveTags method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterRemoveTags

        public static <T> T dbclusterRemoveTags​(String objectId,
                                                Object inputObject,
                                                Class<T> outputClass)
        Invokes the dbclusterRemoveTags method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterRemoveTags

        public static <T> T dbclusterRemoveTags​(String objectId,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the dbclusterRemoveTags method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterRemoveTags

        public static <T> T dbclusterRemoveTags​(String objectId,
                                                Object inputObject,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the dbclusterRemoveTags method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterRemoveTags​(String objectId)
        Deprecated.
        Use dbclusterRemoveTags(String, Class) instead and supply your own class to deserialize to.
        Invokes the dbclusterRemoveTags method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterRemoveTags​(String objectId,
                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use dbclusterRemoveTags(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the dbclusterRemoveTags method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterRemoveTags​(String objectId,
                                                                                  DXEnvironment env)
        Deprecated.
        Use dbclusterRemoveTags(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the dbclusterRemoveTags method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterRemoveTags​(String objectId,
                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                  DXEnvironment env)
        Deprecated.
        Use dbclusterRemoveTags(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the dbclusterRemoveTags method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterRemoveTypes

        public static <T> T dbclusterRemoveTypes​(String objectId,
                                                 Class<T> outputClass)
        Invokes the dbclusterRemoveTypes method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterRemoveTypes

        public static <T> T dbclusterRemoveTypes​(String objectId,
                                                 Object inputObject,
                                                 Class<T> outputClass)
        Invokes the dbclusterRemoveTypes method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterRemoveTypes

        public static <T> T dbclusterRemoveTypes​(String objectId,
                                                 Class<T> outputClass,
                                                 DXEnvironment env)
        Invokes the dbclusterRemoveTypes method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterRemoveTypes

        public static <T> T dbclusterRemoveTypes​(String objectId,
                                                 Object inputObject,
                                                 Class<T> outputClass,
                                                 DXEnvironment env)
        Invokes the dbclusterRemoveTypes method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterRemoveTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterRemoveTypes​(String objectId)
        Deprecated.
        Use dbclusterRemoveTypes(String, Class) instead and supply your own class to deserialize to.
        Invokes the dbclusterRemoveTypes method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterRemoveTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterRemoveTypes​(String objectId,
                                                                                   com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use dbclusterRemoveTypes(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the dbclusterRemoveTypes method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterRemoveTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterRemoveTypes​(String objectId,
                                                                                   DXEnvironment env)
        Deprecated.
        Use dbclusterRemoveTypes(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the dbclusterRemoveTypes method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterRemoveTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterRemoveTypes​(String objectId,
                                                                                   com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                   DXEnvironment env)
        Deprecated.
        Use dbclusterRemoveTypes(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the dbclusterRemoveTypes method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterRename

        public static <T> T dbclusterRename​(String objectId,
                                            Class<T> outputClass)
        Invokes the dbclusterRename method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterRename

        public static <T> T dbclusterRename​(String objectId,
                                            Object inputObject,
                                            Class<T> outputClass)
        Invokes the dbclusterRename method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterRename

        public static <T> T dbclusterRename​(String objectId,
                                            Class<T> outputClass,
                                            DXEnvironment env)
        Invokes the dbclusterRename method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterRename

        public static <T> T dbclusterRename​(String objectId,
                                            Object inputObject,
                                            Class<T> outputClass,
                                            DXEnvironment env)
        Invokes the dbclusterRename method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterRename

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterRename​(String objectId)
        Deprecated.
        Use dbclusterRename(String, Class) instead and supply your own class to deserialize to.
        Invokes the dbclusterRename method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterRename

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterRename​(String objectId,
                                                                              com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use dbclusterRename(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the dbclusterRename method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterRename

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterRename​(String objectId,
                                                                              DXEnvironment env)
        Deprecated.
        Use dbclusterRename(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the dbclusterRename method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterRename

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterRename​(String objectId,
                                                                              com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                              DXEnvironment env)
        Deprecated.
        Use dbclusterRename(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the dbclusterRename method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterSetDetails

        public static <T> T dbclusterSetDetails​(String objectId,
                                                Class<T> outputClass)
        Invokes the dbclusterSetDetails method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterSetDetails

        public static <T> T dbclusterSetDetails​(String objectId,
                                                Object inputObject,
                                                Class<T> outputClass)
        Invokes the dbclusterSetDetails method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterSetDetails

        public static <T> T dbclusterSetDetails​(String objectId,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the dbclusterSetDetails method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterSetDetails

        public static <T> T dbclusterSetDetails​(String objectId,
                                                Object inputObject,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the dbclusterSetDetails method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterSetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterSetDetails​(String objectId)
        Deprecated.
        Use dbclusterSetDetails(String, Class) instead and supply your own class to deserialize to.
        Invokes the dbclusterSetDetails method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterSetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterSetDetails​(String objectId,
                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use dbclusterSetDetails(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the dbclusterSetDetails method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterSetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterSetDetails​(String objectId,
                                                                                  DXEnvironment env)
        Deprecated.
        Use dbclusterSetDetails(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the dbclusterSetDetails method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterSetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterSetDetails​(String objectId,
                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                  DXEnvironment env)
        Deprecated.
        Use dbclusterSetDetails(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the dbclusterSetDetails method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterSetProperties

        public static <T> T dbclusterSetProperties​(String objectId,
                                                   Class<T> outputClass)
        Invokes the dbclusterSetProperties method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterSetProperties

        public static <T> T dbclusterSetProperties​(String objectId,
                                                   Object inputObject,
                                                   Class<T> outputClass)
        Invokes the dbclusterSetProperties method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterSetProperties

        public static <T> T dbclusterSetProperties​(String objectId,
                                                   Class<T> outputClass,
                                                   DXEnvironment env)
        Invokes the dbclusterSetProperties method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterSetProperties

        public static <T> T dbclusterSetProperties​(String objectId,
                                                   Object inputObject,
                                                   Class<T> outputClass,
                                                   DXEnvironment env)
        Invokes the dbclusterSetProperties method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterSetProperties​(String objectId)
        Deprecated.
        Use dbclusterSetProperties(String, Class) instead and supply your own class to deserialize to.
        Invokes the dbclusterSetProperties method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterSetProperties​(String objectId,
                                                                                     com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use dbclusterSetProperties(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the dbclusterSetProperties method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterSetProperties​(String objectId,
                                                                                     DXEnvironment env)
        Deprecated.
        Use dbclusterSetProperties(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the dbclusterSetProperties method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterSetProperties​(String objectId,
                                                                                     com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                     DXEnvironment env)
        Deprecated.
        Use dbclusterSetProperties(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the dbclusterSetProperties method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterSetVisibility

        public static <T> T dbclusterSetVisibility​(String objectId,
                                                   Class<T> outputClass)
        Invokes the dbclusterSetVisibility method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterSetVisibility

        public static <T> T dbclusterSetVisibility​(String objectId,
                                                   Object inputObject,
                                                   Class<T> outputClass)
        Invokes the dbclusterSetVisibility method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterSetVisibility

        public static <T> T dbclusterSetVisibility​(String objectId,
                                                   Class<T> outputClass,
                                                   DXEnvironment env)
        Invokes the dbclusterSetVisibility method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterSetVisibility

        public static <T> T dbclusterSetVisibility​(String objectId,
                                                   Object inputObject,
                                                   Class<T> outputClass,
                                                   DXEnvironment env)
        Invokes the dbclusterSetVisibility method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterSetVisibility

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterSetVisibility​(String objectId)
        Deprecated.
        Use dbclusterSetVisibility(String, Class) instead and supply your own class to deserialize to.
        Invokes the dbclusterSetVisibility method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterSetVisibility

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterSetVisibility​(String objectId,
                                                                                     com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use dbclusterSetVisibility(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the dbclusterSetVisibility method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterSetVisibility

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterSetVisibility​(String objectId,
                                                                                     DXEnvironment env)
        Deprecated.
        Use dbclusterSetVisibility(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the dbclusterSetVisibility method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterSetVisibility

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterSetVisibility​(String objectId,
                                                                                     com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                     DXEnvironment env)
        Deprecated.
        Use dbclusterSetVisibility(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the dbclusterSetVisibility method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterStart

        public static <T> T dbclusterStart​(String objectId,
                                           Class<T> outputClass)
        Invokes the dbclusterStart method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterStart

        public static <T> T dbclusterStart​(String objectId,
                                           Object inputObject,
                                           Class<T> outputClass)
        Invokes the dbclusterStart method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterStart

        public static <T> T dbclusterStart​(String objectId,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the dbclusterStart method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterStart

        public static <T> T dbclusterStart​(String objectId,
                                           Object inputObject,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the dbclusterStart method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterStart

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterStart​(String objectId)
        Deprecated.
        Use dbclusterStart(String, Class) instead and supply your own class to deserialize to.
        Invokes the dbclusterStart method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterStart

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterStart​(String objectId,
                                                                             com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use dbclusterStart(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the dbclusterStart method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterStart

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterStart​(String objectId,
                                                                             DXEnvironment env)
        Deprecated.
        Use dbclusterStart(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the dbclusterStart method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterStart

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterStart​(String objectId,
                                                                             com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                             DXEnvironment env)
        Deprecated.
        Use dbclusterStart(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the dbclusterStart method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterStop

        public static <T> T dbclusterStop​(String objectId,
                                          Class<T> outputClass)
        Invokes the dbclusterStop method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterStop

        public static <T> T dbclusterStop​(String objectId,
                                          Object inputObject,
                                          Class<T> outputClass)
        Invokes the dbclusterStop method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterStop

        public static <T> T dbclusterStop​(String objectId,
                                          Class<T> outputClass,
                                          DXEnvironment env)
        Invokes the dbclusterStop method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterStop

        public static <T> T dbclusterStop​(String objectId,
                                          Object inputObject,
                                          Class<T> outputClass,
                                          DXEnvironment env)
        Invokes the dbclusterStop method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterStop

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterStop​(String objectId)
        Deprecated.
        Use dbclusterStop(String, Class) instead and supply your own class to deserialize to.
        Invokes the dbclusterStop method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterStop

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterStop​(String objectId,
                                                                            com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use dbclusterStop(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the dbclusterStop method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterStop

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterStop​(String objectId,
                                                                            DXEnvironment env)
        Deprecated.
        Use dbclusterStop(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the dbclusterStop method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterStop

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterStop​(String objectId,
                                                                            com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                            DXEnvironment env)
        Deprecated.
        Use dbclusterStop(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the dbclusterStop method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterTerminate

        public static <T> T dbclusterTerminate​(String objectId,
                                               Class<T> outputClass)
        Invokes the dbclusterTerminate method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterTerminate

        public static <T> T dbclusterTerminate​(String objectId,
                                               Object inputObject,
                                               Class<T> outputClass)
        Invokes the dbclusterTerminate method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterTerminate

        public static <T> T dbclusterTerminate​(String objectId,
                                               Class<T> outputClass,
                                               DXEnvironment env)
        Invokes the dbclusterTerminate method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterTerminate

        public static <T> T dbclusterTerminate​(String objectId,
                                               Object inputObject,
                                               Class<T> outputClass,
                                               DXEnvironment env)
        Invokes the dbclusterTerminate method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterTerminate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterTerminate​(String objectId)
        Deprecated.
        Use dbclusterTerminate(String, Class) instead and supply your own class to deserialize to.
        Invokes the dbclusterTerminate method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterTerminate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterTerminate​(String objectId,
                                                                                 com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use dbclusterTerminate(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the dbclusterTerminate method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterTerminate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterTerminate​(String objectId,
                                                                                 DXEnvironment env)
        Deprecated.
        Use dbclusterTerminate(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the dbclusterTerminate method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • dbclusterTerminate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode dbclusterTerminate​(String objectId,
                                                                                 com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                 DXEnvironment env)
        Deprecated.
        Use dbclusterTerminate(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the dbclusterTerminate method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileAddTags

        public static <T> T fileAddTags​(String objectId,
                                        Class<T> outputClass)
        Invokes the fileAddTags method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileAddTags

        public static <T> T fileAddTags​(String objectId,
                                        Object inputObject,
                                        Class<T> outputClass)
        Invokes the fileAddTags method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileAddTags

        public static <T> T fileAddTags​(String objectId,
                                        Class<T> outputClass,
                                        DXEnvironment env)
        Invokes the fileAddTags method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileAddTags

        public static <T> T fileAddTags​(String objectId,
                                        Object inputObject,
                                        Class<T> outputClass,
                                        DXEnvironment env)
        Invokes the fileAddTags method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileAddTags​(String objectId)
        Deprecated.
        Use fileAddTags(String, Class) instead and supply your own class to deserialize to.
        Invokes the fileAddTags method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileAddTags​(String objectId,
                                                                          com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use fileAddTags(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the fileAddTags method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileAddTags​(String objectId,
                                                                          DXEnvironment env)
        Deprecated.
        Use fileAddTags(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the fileAddTags method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileAddTags​(String objectId,
                                                                          com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                          DXEnvironment env)
        Deprecated.
        Use fileAddTags(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the fileAddTags method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileAddTypes

        public static <T> T fileAddTypes​(String objectId,
                                         Class<T> outputClass)
        Invokes the fileAddTypes method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileAddTypes

        public static <T> T fileAddTypes​(String objectId,
                                         Object inputObject,
                                         Class<T> outputClass)
        Invokes the fileAddTypes method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileAddTypes

        public static <T> T fileAddTypes​(String objectId,
                                         Class<T> outputClass,
                                         DXEnvironment env)
        Invokes the fileAddTypes method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileAddTypes

        public static <T> T fileAddTypes​(String objectId,
                                         Object inputObject,
                                         Class<T> outputClass,
                                         DXEnvironment env)
        Invokes the fileAddTypes method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileAddTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileAddTypes​(String objectId)
        Deprecated.
        Use fileAddTypes(String, Class) instead and supply your own class to deserialize to.
        Invokes the fileAddTypes method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileAddTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileAddTypes​(String objectId,
                                                                           com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use fileAddTypes(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the fileAddTypes method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileAddTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileAddTypes​(String objectId,
                                                                           DXEnvironment env)
        Deprecated.
        Use fileAddTypes(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the fileAddTypes method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileAddTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileAddTypes​(String objectId,
                                                                           com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                           DXEnvironment env)
        Deprecated.
        Use fileAddTypes(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the fileAddTypes method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileClose

        public static <T> T fileClose​(String objectId,
                                      Class<T> outputClass)
        Invokes the fileClose method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileClose

        public static <T> T fileClose​(String objectId,
                                      Object inputObject,
                                      Class<T> outputClass)
        Invokes the fileClose method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileClose

        public static <T> T fileClose​(String objectId,
                                      Class<T> outputClass,
                                      DXEnvironment env)
        Invokes the fileClose method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileClose

        public static <T> T fileClose​(String objectId,
                                      Object inputObject,
                                      Class<T> outputClass,
                                      DXEnvironment env)
        Invokes the fileClose method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileClose

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileClose​(String objectId)
        Deprecated.
        Use fileClose(String, Class) instead and supply your own class to deserialize to.
        Invokes the fileClose method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileClose

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileClose​(String objectId,
                                                                        com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use fileClose(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the fileClose method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileClose

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileClose​(String objectId,
                                                                        DXEnvironment env)
        Deprecated.
        Use fileClose(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the fileClose method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileClose

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileClose​(String objectId,
                                                                        com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                        DXEnvironment env)
        Deprecated.
        Use fileClose(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the fileClose method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileDescribe

        public static <T> T fileDescribe​(String objectId,
                                         Class<T> outputClass)
        Invokes the fileDescribe method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileDescribe

        public static <T> T fileDescribe​(String objectId,
                                         Object inputObject,
                                         Class<T> outputClass)
        Invokes the fileDescribe method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileDescribe

        public static <T> T fileDescribe​(String objectId,
                                         Class<T> outputClass,
                                         DXEnvironment env)
        Invokes the fileDescribe method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileDescribe

        public static <T> T fileDescribe​(String objectId,
                                         Object inputObject,
                                         Class<T> outputClass,
                                         DXEnvironment env)
        Invokes the fileDescribe method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileDescribe​(String objectId)
        Deprecated.
        Use fileDescribe(String, Class) instead and supply your own class to deserialize to.
        Invokes the fileDescribe method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileDescribe​(String objectId,
                                                                           com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use fileDescribe(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the fileDescribe method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileDescribe​(String objectId,
                                                                           DXEnvironment env)
        Deprecated.
        Use fileDescribe(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the fileDescribe method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileDescribe​(String objectId,
                                                                           com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                           DXEnvironment env)
        Deprecated.
        Use fileDescribe(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the fileDescribe method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileDownload

        public static <T> T fileDownload​(String objectId,
                                         Class<T> outputClass)
        Invokes the fileDownload method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileDownload

        public static <T> T fileDownload​(String objectId,
                                         Object inputObject,
                                         Class<T> outputClass)
        Invokes the fileDownload method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileDownload

        public static <T> T fileDownload​(String objectId,
                                         Class<T> outputClass,
                                         DXEnvironment env)
        Invokes the fileDownload method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileDownload

        public static <T> T fileDownload​(String objectId,
                                         Object inputObject,
                                         Class<T> outputClass,
                                         DXEnvironment env)
        Invokes the fileDownload method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileDownload

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileDownload​(String objectId)
        Deprecated.
        Use fileDownload(String, Class) instead and supply your own class to deserialize to.
        Invokes the fileDownload method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileDownload

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileDownload​(String objectId,
                                                                           com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use fileDownload(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the fileDownload method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileDownload

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileDownload​(String objectId,
                                                                           DXEnvironment env)
        Deprecated.
        Use fileDownload(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the fileDownload method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileDownload

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileDownload​(String objectId,
                                                                           com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                           DXEnvironment env)
        Deprecated.
        Use fileDownload(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the fileDownload method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileGetDetails

        public static <T> T fileGetDetails​(String objectId,
                                           Class<T> outputClass)
        Invokes the fileGetDetails method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileGetDetails

        public static <T> T fileGetDetails​(String objectId,
                                           Object inputObject,
                                           Class<T> outputClass)
        Invokes the fileGetDetails method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileGetDetails

        public static <T> T fileGetDetails​(String objectId,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the fileGetDetails method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileGetDetails

        public static <T> T fileGetDetails​(String objectId,
                                           Object inputObject,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the fileGetDetails method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileGetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileGetDetails​(String objectId)
        Deprecated.
        Use fileGetDetails(String, Class) instead and supply your own class to deserialize to.
        Invokes the fileGetDetails method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileGetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileGetDetails​(String objectId,
                                                                             com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use fileGetDetails(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the fileGetDetails method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileGetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileGetDetails​(String objectId,
                                                                             DXEnvironment env)
        Deprecated.
        Use fileGetDetails(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the fileGetDetails method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileGetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileGetDetails​(String objectId,
                                                                             com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                             DXEnvironment env)
        Deprecated.
        Use fileGetDetails(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the fileGetDetails method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileListProjects

        public static <T> T fileListProjects​(String objectId,
                                             Class<T> outputClass)
        Invokes the fileListProjects method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileListProjects

        public static <T> T fileListProjects​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass)
        Invokes the fileListProjects method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileListProjects

        public static <T> T fileListProjects​(String objectId,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the fileListProjects method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileListProjects

        public static <T> T fileListProjects​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the fileListProjects method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileListProjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileListProjects​(String objectId)
        Deprecated.
        Use fileListProjects(String, Class) instead and supply your own class to deserialize to.
        Invokes the fileListProjects method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileListProjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileListProjects​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use fileListProjects(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the fileListProjects method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileListProjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileListProjects​(String objectId,
                                                                               DXEnvironment env)
        Deprecated.
        Use fileListProjects(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the fileListProjects method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileListProjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileListProjects​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                               DXEnvironment env)
        Deprecated.
        Use fileListProjects(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the fileListProjects method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileRemoveTags

        public static <T> T fileRemoveTags​(String objectId,
                                           Class<T> outputClass)
        Invokes the fileRemoveTags method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileRemoveTags

        public static <T> T fileRemoveTags​(String objectId,
                                           Object inputObject,
                                           Class<T> outputClass)
        Invokes the fileRemoveTags method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileRemoveTags

        public static <T> T fileRemoveTags​(String objectId,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the fileRemoveTags method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileRemoveTags

        public static <T> T fileRemoveTags​(String objectId,
                                           Object inputObject,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the fileRemoveTags method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileRemoveTags​(String objectId)
        Deprecated.
        Use fileRemoveTags(String, Class) instead and supply your own class to deserialize to.
        Invokes the fileRemoveTags method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileRemoveTags​(String objectId,
                                                                             com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use fileRemoveTags(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the fileRemoveTags method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileRemoveTags​(String objectId,
                                                                             DXEnvironment env)
        Deprecated.
        Use fileRemoveTags(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the fileRemoveTags method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileRemoveTags​(String objectId,
                                                                             com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                             DXEnvironment env)
        Deprecated.
        Use fileRemoveTags(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the fileRemoveTags method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileRemoveTypes

        public static <T> T fileRemoveTypes​(String objectId,
                                            Class<T> outputClass)
        Invokes the fileRemoveTypes method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileRemoveTypes

        public static <T> T fileRemoveTypes​(String objectId,
                                            Object inputObject,
                                            Class<T> outputClass)
        Invokes the fileRemoveTypes method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileRemoveTypes

        public static <T> T fileRemoveTypes​(String objectId,
                                            Class<T> outputClass,
                                            DXEnvironment env)
        Invokes the fileRemoveTypes method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileRemoveTypes

        public static <T> T fileRemoveTypes​(String objectId,
                                            Object inputObject,
                                            Class<T> outputClass,
                                            DXEnvironment env)
        Invokes the fileRemoveTypes method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileRemoveTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileRemoveTypes​(String objectId)
        Deprecated.
        Use fileRemoveTypes(String, Class) instead and supply your own class to deserialize to.
        Invokes the fileRemoveTypes method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileRemoveTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileRemoveTypes​(String objectId,
                                                                              com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use fileRemoveTypes(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the fileRemoveTypes method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileRemoveTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileRemoveTypes​(String objectId,
                                                                              DXEnvironment env)
        Deprecated.
        Use fileRemoveTypes(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the fileRemoveTypes method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileRemoveTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileRemoveTypes​(String objectId,
                                                                              com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                              DXEnvironment env)
        Deprecated.
        Use fileRemoveTypes(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the fileRemoveTypes method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileRename

        public static <T> T fileRename​(String objectId,
                                       Class<T> outputClass)
        Invokes the fileRename method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileRename

        public static <T> T fileRename​(String objectId,
                                       Object inputObject,
                                       Class<T> outputClass)
        Invokes the fileRename method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileRename

        public static <T> T fileRename​(String objectId,
                                       Class<T> outputClass,
                                       DXEnvironment env)
        Invokes the fileRename method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileRename

        public static <T> T fileRename​(String objectId,
                                       Object inputObject,
                                       Class<T> outputClass,
                                       DXEnvironment env)
        Invokes the fileRename method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileRename

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileRename​(String objectId)
        Deprecated.
        Use fileRename(String, Class) instead and supply your own class to deserialize to.
        Invokes the fileRename method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileRename

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileRename​(String objectId,
                                                                         com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use fileRename(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the fileRename method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileRename

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileRename​(String objectId,
                                                                         DXEnvironment env)
        Deprecated.
        Use fileRename(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the fileRename method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileRename

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileRename​(String objectId,
                                                                         com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                         DXEnvironment env)
        Deprecated.
        Use fileRename(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the fileRename method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileSetDetails

        public static <T> T fileSetDetails​(String objectId,
                                           Class<T> outputClass)
        Invokes the fileSetDetails method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileSetDetails

        public static <T> T fileSetDetails​(String objectId,
                                           Object inputObject,
                                           Class<T> outputClass)
        Invokes the fileSetDetails method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileSetDetails

        public static <T> T fileSetDetails​(String objectId,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the fileSetDetails method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileSetDetails

        public static <T> T fileSetDetails​(String objectId,
                                           Object inputObject,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the fileSetDetails method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileSetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileSetDetails​(String objectId)
        Deprecated.
        Use fileSetDetails(String, Class) instead and supply your own class to deserialize to.
        Invokes the fileSetDetails method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileSetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileSetDetails​(String objectId,
                                                                             com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use fileSetDetails(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the fileSetDetails method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileSetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileSetDetails​(String objectId,
                                                                             DXEnvironment env)
        Deprecated.
        Use fileSetDetails(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the fileSetDetails method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileSetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileSetDetails​(String objectId,
                                                                             com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                             DXEnvironment env)
        Deprecated.
        Use fileSetDetails(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the fileSetDetails method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileSetProperties

        public static <T> T fileSetProperties​(String objectId,
                                              Class<T> outputClass)
        Invokes the fileSetProperties method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileSetProperties

        public static <T> T fileSetProperties​(String objectId,
                                              Object inputObject,
                                              Class<T> outputClass)
        Invokes the fileSetProperties method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileSetProperties

        public static <T> T fileSetProperties​(String objectId,
                                              Class<T> outputClass,
                                              DXEnvironment env)
        Invokes the fileSetProperties method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileSetProperties

        public static <T> T fileSetProperties​(String objectId,
                                              Object inputObject,
                                              Class<T> outputClass,
                                              DXEnvironment env)
        Invokes the fileSetProperties method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileSetProperties​(String objectId)
        Deprecated.
        Use fileSetProperties(String, Class) instead and supply your own class to deserialize to.
        Invokes the fileSetProperties method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileSetProperties​(String objectId,
                                                                                com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use fileSetProperties(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the fileSetProperties method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileSetProperties​(String objectId,
                                                                                DXEnvironment env)
        Deprecated.
        Use fileSetProperties(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the fileSetProperties method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileSetProperties​(String objectId,
                                                                                com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                DXEnvironment env)
        Deprecated.
        Use fileSetProperties(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the fileSetProperties method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileSetVisibility

        public static <T> T fileSetVisibility​(String objectId,
                                              Class<T> outputClass)
        Invokes the fileSetVisibility method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileSetVisibility

        public static <T> T fileSetVisibility​(String objectId,
                                              Object inputObject,
                                              Class<T> outputClass)
        Invokes the fileSetVisibility method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileSetVisibility

        public static <T> T fileSetVisibility​(String objectId,
                                              Class<T> outputClass,
                                              DXEnvironment env)
        Invokes the fileSetVisibility method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileSetVisibility

        public static <T> T fileSetVisibility​(String objectId,
                                              Object inputObject,
                                              Class<T> outputClass,
                                              DXEnvironment env)
        Invokes the fileSetVisibility method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileSetVisibility

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileSetVisibility​(String objectId)
        Deprecated.
        Use fileSetVisibility(String, Class) instead and supply your own class to deserialize to.
        Invokes the fileSetVisibility method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileSetVisibility

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileSetVisibility​(String objectId,
                                                                                com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use fileSetVisibility(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the fileSetVisibility method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileSetVisibility

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileSetVisibility​(String objectId,
                                                                                DXEnvironment env)
        Deprecated.
        Use fileSetVisibility(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the fileSetVisibility method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileSetVisibility

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileSetVisibility​(String objectId,
                                                                                com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                DXEnvironment env)
        Deprecated.
        Use fileSetVisibility(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the fileSetVisibility method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileUpload

        public static <T> T fileUpload​(String objectId,
                                       Class<T> outputClass)
        Invokes the fileUpload method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileUpload

        public static <T> T fileUpload​(String objectId,
                                       Object inputObject,
                                       Class<T> outputClass)
        Invokes the fileUpload method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileUpload

        public static <T> T fileUpload​(String objectId,
                                       Class<T> outputClass,
                                       DXEnvironment env)
        Invokes the fileUpload method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileUpload

        public static <T> T fileUpload​(String objectId,
                                       Object inputObject,
                                       Class<T> outputClass,
                                       DXEnvironment env)
        Invokes the fileUpload method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileUpload

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileUpload​(String objectId)
        Deprecated.
        Use fileUpload(String, Class) instead and supply your own class to deserialize to.
        Invokes the fileUpload method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileUpload

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileUpload​(String objectId,
                                                                         com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use fileUpload(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the fileUpload method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileUpload

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileUpload​(String objectId,
                                                                         DXEnvironment env)
        Deprecated.
        Use fileUpload(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the fileUpload method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileUpload

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileUpload​(String objectId,
                                                                         com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                         DXEnvironment env)
        Deprecated.
        Use fileUpload(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the fileUpload method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileNew

        public static <T> T fileNew​(Class<T> outputClass)
        Invokes the fileNew method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileNew

        public static <T> T fileNew​(Class<T> outputClass,
                                    DXEnvironment env)
        Invokes the fileNew method with an empty input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileNew

        public static <T> T fileNew​(Object inputObject,
                                    Class<T> outputClass)
        Invokes the fileNew method with the specified input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileNew

        public static <T> T fileNew​(Object inputObject,
                                    Class<T> outputClass,
                                    DXEnvironment env)
        Invokes the fileNew method with the specified input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileNew()
        Deprecated.
        Use fileNew(Class) instead and supply your own class to deserialize to.
        Invokes the fileNew method.

        For more information about this method, see the API specification.

        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileNew​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use fileNew(Object, Class) instead and supply your own class to deserialize to.
        Invokes the fileNew method with the specified input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileNew​(DXEnvironment env)
        Deprecated.
        Use fileNew(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the fileNew method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • fileNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode fileNew​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                      DXEnvironment env)
        Deprecated.
        Use fileNew(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the fileNew method with the specified environment and input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowAddAuthorizedUsers

        public static <T> T globalWorkflowAddAuthorizedUsers​(String objectId,
                                                             Class<T> outputClass)
        Invokes the globalWorkflowAddAuthorizedUsers method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowAddAuthorizedUsers

        public static <T> T globalWorkflowAddAuthorizedUsers​(String objectId,
                                                             Object inputObject,
                                                             Class<T> outputClass)
        Invokes the globalWorkflowAddAuthorizedUsers method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowAddAuthorizedUsers

        public static <T> T globalWorkflowAddAuthorizedUsers​(String objectId,
                                                             Class<T> outputClass,
                                                             DXEnvironment env)
        Invokes the globalWorkflowAddAuthorizedUsers method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowAddAuthorizedUsers

        public static <T> T globalWorkflowAddAuthorizedUsers​(String objectId,
                                                             Object inputObject,
                                                             Class<T> outputClass,
                                                             DXEnvironment env)
        Invokes the globalWorkflowAddAuthorizedUsers method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowAddAuthorizedUsers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowAddAuthorizedUsers​(String objectId)
        Deprecated.
        Use globalWorkflowAddAuthorizedUsers(String, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowAddAuthorizedUsers method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowAddAuthorizedUsers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowAddAuthorizedUsers​(String objectId,
                                                                                               com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use globalWorkflowAddAuthorizedUsers(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowAddAuthorizedUsers method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowAddAuthorizedUsers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowAddAuthorizedUsers​(String objectId,
                                                                                               DXEnvironment env)
        Deprecated.
        Use globalWorkflowAddAuthorizedUsers(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowAddAuthorizedUsers method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowAddAuthorizedUsers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowAddAuthorizedUsers​(String objectId,
                                                                                               com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                               DXEnvironment env)
        Deprecated.
        Use globalWorkflowAddAuthorizedUsers(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowAddAuthorizedUsers method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowAddCategories

        public static <T> T globalWorkflowAddCategories​(String objectId,
                                                        Class<T> outputClass)
        Invokes the globalWorkflowAddCategories method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowAddCategories

        public static <T> T globalWorkflowAddCategories​(String objectId,
                                                        Object inputObject,
                                                        Class<T> outputClass)
        Invokes the globalWorkflowAddCategories method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowAddCategories

        public static <T> T globalWorkflowAddCategories​(String objectId,
                                                        Class<T> outputClass,
                                                        DXEnvironment env)
        Invokes the globalWorkflowAddCategories method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowAddCategories

        public static <T> T globalWorkflowAddCategories​(String objectId,
                                                        Object inputObject,
                                                        Class<T> outputClass,
                                                        DXEnvironment env)
        Invokes the globalWorkflowAddCategories method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowAddCategories

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowAddCategories​(String objectId)
        Deprecated.
        Use globalWorkflowAddCategories(String, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowAddCategories method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowAddCategories

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowAddCategories​(String objectId,
                                                                                          com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use globalWorkflowAddCategories(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowAddCategories method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowAddCategories

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowAddCategories​(String objectId,
                                                                                          DXEnvironment env)
        Deprecated.
        Use globalWorkflowAddCategories(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowAddCategories method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowAddCategories

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowAddCategories​(String objectId,
                                                                                          com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                          DXEnvironment env)
        Deprecated.
        Use globalWorkflowAddCategories(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowAddCategories method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowAddDevelopers

        public static <T> T globalWorkflowAddDevelopers​(String objectId,
                                                        Class<T> outputClass)
        Invokes the globalWorkflowAddDevelopers method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowAddDevelopers

        public static <T> T globalWorkflowAddDevelopers​(String objectId,
                                                        Object inputObject,
                                                        Class<T> outputClass)
        Invokes the globalWorkflowAddDevelopers method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowAddDevelopers

        public static <T> T globalWorkflowAddDevelopers​(String objectId,
                                                        Class<T> outputClass,
                                                        DXEnvironment env)
        Invokes the globalWorkflowAddDevelopers method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowAddDevelopers

        public static <T> T globalWorkflowAddDevelopers​(String objectId,
                                                        Object inputObject,
                                                        Class<T> outputClass,
                                                        DXEnvironment env)
        Invokes the globalWorkflowAddDevelopers method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowAddDevelopers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowAddDevelopers​(String objectId)
        Deprecated.
        Use globalWorkflowAddDevelopers(String, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowAddDevelopers method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowAddDevelopers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowAddDevelopers​(String objectId,
                                                                                          com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use globalWorkflowAddDevelopers(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowAddDevelopers method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowAddDevelopers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowAddDevelopers​(String objectId,
                                                                                          DXEnvironment env)
        Deprecated.
        Use globalWorkflowAddDevelopers(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowAddDevelopers method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowAddDevelopers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowAddDevelopers​(String objectId,
                                                                                          com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                          DXEnvironment env)
        Deprecated.
        Use globalWorkflowAddDevelopers(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowAddDevelopers method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowAddTags

        public static <T> T globalWorkflowAddTags​(String objectId,
                                                  Class<T> outputClass)
        Invokes the globalWorkflowAddTags method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowAddTags

        public static <T> T globalWorkflowAddTags​(String objectId,
                                                  Object inputObject,
                                                  Class<T> outputClass)
        Invokes the globalWorkflowAddTags method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowAddTags

        public static <T> T globalWorkflowAddTags​(String objectId,
                                                  Class<T> outputClass,
                                                  DXEnvironment env)
        Invokes the globalWorkflowAddTags method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowAddTags

        public static <T> T globalWorkflowAddTags​(String objectId,
                                                  Object inputObject,
                                                  Class<T> outputClass,
                                                  DXEnvironment env)
        Invokes the globalWorkflowAddTags method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowAddTags​(String objectId)
        Deprecated.
        Use globalWorkflowAddTags(String, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowAddTags method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowAddTags​(String objectId,
                                                                                    com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use globalWorkflowAddTags(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowAddTags method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowAddTags​(String objectId,
                                                                                    DXEnvironment env)
        Deprecated.
        Use globalWorkflowAddTags(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowAddTags method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowAddTags​(String objectId,
                                                                                    com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                    DXEnvironment env)
        Deprecated.
        Use globalWorkflowAddTags(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowAddTags method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowDelete

        public static <T> T globalWorkflowDelete​(String objectId,
                                                 Class<T> outputClass)
        Invokes the globalWorkflowDelete method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowDelete

        public static <T> T globalWorkflowDelete​(String objectId,
                                                 Object inputObject,
                                                 Class<T> outputClass)
        Invokes the globalWorkflowDelete method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowDelete

        public static <T> T globalWorkflowDelete​(String objectId,
                                                 Class<T> outputClass,
                                                 DXEnvironment env)
        Invokes the globalWorkflowDelete method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowDelete

        public static <T> T globalWorkflowDelete​(String objectId,
                                                 Object inputObject,
                                                 Class<T> outputClass,
                                                 DXEnvironment env)
        Invokes the globalWorkflowDelete method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowDelete

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowDelete​(String objectId)
        Deprecated.
        Use globalWorkflowDelete(String, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowDelete method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowDelete

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowDelete​(String objectId,
                                                                                   com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use globalWorkflowDelete(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowDelete method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowDelete

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowDelete​(String objectId,
                                                                                   DXEnvironment env)
        Deprecated.
        Use globalWorkflowDelete(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowDelete method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowDelete

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowDelete​(String objectId,
                                                                                   com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                   DXEnvironment env)
        Deprecated.
        Use globalWorkflowDelete(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowDelete method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowDescribe

        public static <T> T globalWorkflowDescribe​(String objectId,
                                                   Class<T> outputClass)
        Invokes the globalWorkflowDescribe method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowDescribe

        public static <T> T globalWorkflowDescribe​(String objectId,
                                                   Object inputObject,
                                                   Class<T> outputClass)
        Invokes the globalWorkflowDescribe method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowDescribe

        public static <T> T globalWorkflowDescribe​(String objectId,
                                                   Class<T> outputClass,
                                                   DXEnvironment env)
        Invokes the globalWorkflowDescribe method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowDescribe

        public static <T> T globalWorkflowDescribe​(String objectId,
                                                   Object inputObject,
                                                   Class<T> outputClass,
                                                   DXEnvironment env)
        Invokes the globalWorkflowDescribe method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowDescribe​(String objectId)
        Deprecated.
        Use globalWorkflowDescribe(String, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowDescribe method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowDescribe​(String objectId,
                                                                                     com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use globalWorkflowDescribe(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowDescribe method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowDescribe​(String objectId,
                                                                                     DXEnvironment env)
        Deprecated.
        Use globalWorkflowDescribe(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowDescribe method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowDescribe​(String objectId,
                                                                                     com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                     DXEnvironment env)
        Deprecated.
        Use globalWorkflowDescribe(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowDescribe method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowListAuthorizedUsers

        public static <T> T globalWorkflowListAuthorizedUsers​(String objectId,
                                                              Class<T> outputClass)
        Invokes the globalWorkflowListAuthorizedUsers method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowListAuthorizedUsers

        public static <T> T globalWorkflowListAuthorizedUsers​(String objectId,
                                                              Object inputObject,
                                                              Class<T> outputClass)
        Invokes the globalWorkflowListAuthorizedUsers method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowListAuthorizedUsers

        public static <T> T globalWorkflowListAuthorizedUsers​(String objectId,
                                                              Class<T> outputClass,
                                                              DXEnvironment env)
        Invokes the globalWorkflowListAuthorizedUsers method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowListAuthorizedUsers

        public static <T> T globalWorkflowListAuthorizedUsers​(String objectId,
                                                              Object inputObject,
                                                              Class<T> outputClass,
                                                              DXEnvironment env)
        Invokes the globalWorkflowListAuthorizedUsers method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowListAuthorizedUsers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowListAuthorizedUsers​(String objectId)
        Deprecated.
        Use globalWorkflowListAuthorizedUsers(String, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowListAuthorizedUsers method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowListAuthorizedUsers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowListAuthorizedUsers​(String objectId,
                                                                                                com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use globalWorkflowListAuthorizedUsers(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowListAuthorizedUsers method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowListAuthorizedUsers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowListAuthorizedUsers​(String objectId,
                                                                                                DXEnvironment env)
        Deprecated.
        Use globalWorkflowListAuthorizedUsers(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowListAuthorizedUsers method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowListAuthorizedUsers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowListAuthorizedUsers​(String objectId,
                                                                                                com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                                DXEnvironment env)
        Deprecated.
        Use globalWorkflowListAuthorizedUsers(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowListAuthorizedUsers method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowListCategories

        public static <T> T globalWorkflowListCategories​(String objectId,
                                                         Class<T> outputClass)
        Invokes the globalWorkflowListCategories method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowListCategories

        public static <T> T globalWorkflowListCategories​(String objectId,
                                                         Object inputObject,
                                                         Class<T> outputClass)
        Invokes the globalWorkflowListCategories method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowListCategories

        public static <T> T globalWorkflowListCategories​(String objectId,
                                                         Class<T> outputClass,
                                                         DXEnvironment env)
        Invokes the globalWorkflowListCategories method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowListCategories

        public static <T> T globalWorkflowListCategories​(String objectId,
                                                         Object inputObject,
                                                         Class<T> outputClass,
                                                         DXEnvironment env)
        Invokes the globalWorkflowListCategories method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowListCategories

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowListCategories​(String objectId)
        Deprecated.
        Use globalWorkflowListCategories(String, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowListCategories method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowListCategories

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowListCategories​(String objectId,
                                                                                           com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use globalWorkflowListCategories(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowListCategories method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowListCategories

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowListCategories​(String objectId,
                                                                                           DXEnvironment env)
        Deprecated.
        Use globalWorkflowListCategories(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowListCategories method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowListCategories

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowListCategories​(String objectId,
                                                                                           com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                           DXEnvironment env)
        Deprecated.
        Use globalWorkflowListCategories(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowListCategories method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowListDevelopers

        public static <T> T globalWorkflowListDevelopers​(String objectId,
                                                         Class<T> outputClass)
        Invokes the globalWorkflowListDevelopers method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowListDevelopers

        public static <T> T globalWorkflowListDevelopers​(String objectId,
                                                         Object inputObject,
                                                         Class<T> outputClass)
        Invokes the globalWorkflowListDevelopers method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowListDevelopers

        public static <T> T globalWorkflowListDevelopers​(String objectId,
                                                         Class<T> outputClass,
                                                         DXEnvironment env)
        Invokes the globalWorkflowListDevelopers method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowListDevelopers

        public static <T> T globalWorkflowListDevelopers​(String objectId,
                                                         Object inputObject,
                                                         Class<T> outputClass,
                                                         DXEnvironment env)
        Invokes the globalWorkflowListDevelopers method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowListDevelopers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowListDevelopers​(String objectId)
        Deprecated.
        Use globalWorkflowListDevelopers(String, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowListDevelopers method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowListDevelopers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowListDevelopers​(String objectId,
                                                                                           com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use globalWorkflowListDevelopers(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowListDevelopers method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowListDevelopers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowListDevelopers​(String objectId,
                                                                                           DXEnvironment env)
        Deprecated.
        Use globalWorkflowListDevelopers(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowListDevelopers method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowListDevelopers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowListDevelopers​(String objectId,
                                                                                           com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                           DXEnvironment env)
        Deprecated.
        Use globalWorkflowListDevelopers(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowListDevelopers method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowPublish

        public static <T> T globalWorkflowPublish​(String objectId,
                                                  Class<T> outputClass)
        Invokes the globalWorkflowPublish method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowPublish

        public static <T> T globalWorkflowPublish​(String objectId,
                                                  Object inputObject,
                                                  Class<T> outputClass)
        Invokes the globalWorkflowPublish method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowPublish

        public static <T> T globalWorkflowPublish​(String objectId,
                                                  Class<T> outputClass,
                                                  DXEnvironment env)
        Invokes the globalWorkflowPublish method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowPublish

        public static <T> T globalWorkflowPublish​(String objectId,
                                                  Object inputObject,
                                                  Class<T> outputClass,
                                                  DXEnvironment env)
        Invokes the globalWorkflowPublish method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowPublish

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowPublish​(String objectId)
        Deprecated.
        Use globalWorkflowPublish(String, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowPublish method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowPublish

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowPublish​(String objectId,
                                                                                    com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use globalWorkflowPublish(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowPublish method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowPublish

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowPublish​(String objectId,
                                                                                    DXEnvironment env)
        Deprecated.
        Use globalWorkflowPublish(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowPublish method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowPublish

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowPublish​(String objectId,
                                                                                    com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                    DXEnvironment env)
        Deprecated.
        Use globalWorkflowPublish(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowPublish method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRemoveAuthorizedUsers

        public static <T> T globalWorkflowRemoveAuthorizedUsers​(String objectId,
                                                                Class<T> outputClass)
        Invokes the globalWorkflowRemoveAuthorizedUsers method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRemoveAuthorizedUsers

        public static <T> T globalWorkflowRemoveAuthorizedUsers​(String objectId,
                                                                Object inputObject,
                                                                Class<T> outputClass)
        Invokes the globalWorkflowRemoveAuthorizedUsers method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRemoveAuthorizedUsers

        public static <T> T globalWorkflowRemoveAuthorizedUsers​(String objectId,
                                                                Class<T> outputClass,
                                                                DXEnvironment env)
        Invokes the globalWorkflowRemoveAuthorizedUsers method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRemoveAuthorizedUsers

        public static <T> T globalWorkflowRemoveAuthorizedUsers​(String objectId,
                                                                Object inputObject,
                                                                Class<T> outputClass,
                                                                DXEnvironment env)
        Invokes the globalWorkflowRemoveAuthorizedUsers method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRemoveAuthorizedUsers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowRemoveAuthorizedUsers​(String objectId)
        Deprecated.
        Use globalWorkflowRemoveAuthorizedUsers(String, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowRemoveAuthorizedUsers method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRemoveAuthorizedUsers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowRemoveAuthorizedUsers​(String objectId,
                                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use globalWorkflowRemoveAuthorizedUsers(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowRemoveAuthorizedUsers method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRemoveAuthorizedUsers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowRemoveAuthorizedUsers​(String objectId,
                                                                                                  DXEnvironment env)
        Deprecated.
        Use globalWorkflowRemoveAuthorizedUsers(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowRemoveAuthorizedUsers method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRemoveAuthorizedUsers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowRemoveAuthorizedUsers​(String objectId,
                                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                                  DXEnvironment env)
        Deprecated.
        Use globalWorkflowRemoveAuthorizedUsers(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowRemoveAuthorizedUsers method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRemoveCategories

        public static <T> T globalWorkflowRemoveCategories​(String objectId,
                                                           Class<T> outputClass)
        Invokes the globalWorkflowRemoveCategories method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRemoveCategories

        public static <T> T globalWorkflowRemoveCategories​(String objectId,
                                                           Object inputObject,
                                                           Class<T> outputClass)
        Invokes the globalWorkflowRemoveCategories method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRemoveCategories

        public static <T> T globalWorkflowRemoveCategories​(String objectId,
                                                           Class<T> outputClass,
                                                           DXEnvironment env)
        Invokes the globalWorkflowRemoveCategories method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRemoveCategories

        public static <T> T globalWorkflowRemoveCategories​(String objectId,
                                                           Object inputObject,
                                                           Class<T> outputClass,
                                                           DXEnvironment env)
        Invokes the globalWorkflowRemoveCategories method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRemoveCategories

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowRemoveCategories​(String objectId)
        Deprecated.
        Use globalWorkflowRemoveCategories(String, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowRemoveCategories method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRemoveCategories

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowRemoveCategories​(String objectId,
                                                                                             com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use globalWorkflowRemoveCategories(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowRemoveCategories method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRemoveCategories

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowRemoveCategories​(String objectId,
                                                                                             DXEnvironment env)
        Deprecated.
        Use globalWorkflowRemoveCategories(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowRemoveCategories method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRemoveCategories

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowRemoveCategories​(String objectId,
                                                                                             com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                             DXEnvironment env)
        Deprecated.
        Use globalWorkflowRemoveCategories(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowRemoveCategories method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRemoveDevelopers

        public static <T> T globalWorkflowRemoveDevelopers​(String objectId,
                                                           Class<T> outputClass)
        Invokes the globalWorkflowRemoveDevelopers method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRemoveDevelopers

        public static <T> T globalWorkflowRemoveDevelopers​(String objectId,
                                                           Object inputObject,
                                                           Class<T> outputClass)
        Invokes the globalWorkflowRemoveDevelopers method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRemoveDevelopers

        public static <T> T globalWorkflowRemoveDevelopers​(String objectId,
                                                           Class<T> outputClass,
                                                           DXEnvironment env)
        Invokes the globalWorkflowRemoveDevelopers method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRemoveDevelopers

        public static <T> T globalWorkflowRemoveDevelopers​(String objectId,
                                                           Object inputObject,
                                                           Class<T> outputClass,
                                                           DXEnvironment env)
        Invokes the globalWorkflowRemoveDevelopers method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRemoveDevelopers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowRemoveDevelopers​(String objectId)
        Deprecated.
        Use globalWorkflowRemoveDevelopers(String, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowRemoveDevelopers method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRemoveDevelopers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowRemoveDevelopers​(String objectId,
                                                                                             com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use globalWorkflowRemoveDevelopers(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowRemoveDevelopers method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRemoveDevelopers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowRemoveDevelopers​(String objectId,
                                                                                             DXEnvironment env)
        Deprecated.
        Use globalWorkflowRemoveDevelopers(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowRemoveDevelopers method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRemoveDevelopers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowRemoveDevelopers​(String objectId,
                                                                                             com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                             DXEnvironment env)
        Deprecated.
        Use globalWorkflowRemoveDevelopers(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowRemoveDevelopers method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRemoveTags

        public static <T> T globalWorkflowRemoveTags​(String objectId,
                                                     Class<T> outputClass)
        Invokes the globalWorkflowRemoveTags method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRemoveTags

        public static <T> T globalWorkflowRemoveTags​(String objectId,
                                                     Object inputObject,
                                                     Class<T> outputClass)
        Invokes the globalWorkflowRemoveTags method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRemoveTags

        public static <T> T globalWorkflowRemoveTags​(String objectId,
                                                     Class<T> outputClass,
                                                     DXEnvironment env)
        Invokes the globalWorkflowRemoveTags method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRemoveTags

        public static <T> T globalWorkflowRemoveTags​(String objectId,
                                                     Object inputObject,
                                                     Class<T> outputClass,
                                                     DXEnvironment env)
        Invokes the globalWorkflowRemoveTags method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowRemoveTags​(String objectId)
        Deprecated.
        Use globalWorkflowRemoveTags(String, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowRemoveTags method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowRemoveTags​(String objectId,
                                                                                       com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use globalWorkflowRemoveTags(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowRemoveTags method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowRemoveTags​(String objectId,
                                                                                       DXEnvironment env)
        Deprecated.
        Use globalWorkflowRemoveTags(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowRemoveTags method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowRemoveTags​(String objectId,
                                                                                       com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                       DXEnvironment env)
        Deprecated.
        Use globalWorkflowRemoveTags(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowRemoveTags method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRun

        public static <T> T globalWorkflowRun​(String objectId,
                                              Class<T> outputClass)
        Invokes the globalWorkflowRun method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRun

        public static <T> T globalWorkflowRun​(String objectId,
                                              Object inputObject,
                                              Class<T> outputClass)
        Invokes the globalWorkflowRun method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRun

        public static <T> T globalWorkflowRun​(String objectId,
                                              Class<T> outputClass,
                                              DXEnvironment env)
        Invokes the globalWorkflowRun method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRun

        public static <T> T globalWorkflowRun​(String objectId,
                                              Object inputObject,
                                              Class<T> outputClass,
                                              DXEnvironment env)
        Invokes the globalWorkflowRun method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRun

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowRun​(String objectId)
        Deprecated.
        Use globalWorkflowRun(String, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowRun method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRun

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowRun​(String objectId,
                                                                                com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use globalWorkflowRun(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowRun method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRun

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowRun​(String objectId,
                                                                                DXEnvironment env)
        Deprecated.
        Use globalWorkflowRun(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowRun method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowRun

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowRun​(String objectId,
                                                                                com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                DXEnvironment env)
        Deprecated.
        Use globalWorkflowRun(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowRun method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowUpdate

        public static <T> T globalWorkflowUpdate​(String objectId,
                                                 Class<T> outputClass)
        Invokes the globalWorkflowUpdate method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowUpdate

        public static <T> T globalWorkflowUpdate​(String objectId,
                                                 Object inputObject,
                                                 Class<T> outputClass)
        Invokes the globalWorkflowUpdate method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowUpdate

        public static <T> T globalWorkflowUpdate​(String objectId,
                                                 Class<T> outputClass,
                                                 DXEnvironment env)
        Invokes the globalWorkflowUpdate method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowUpdate

        public static <T> T globalWorkflowUpdate​(String objectId,
                                                 Object inputObject,
                                                 Class<T> outputClass,
                                                 DXEnvironment env)
        Invokes the globalWorkflowUpdate method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowUpdate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowUpdate​(String objectId)
        Deprecated.
        Use globalWorkflowUpdate(String, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowUpdate method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowUpdate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowUpdate​(String objectId,
                                                                                   com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use globalWorkflowUpdate(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowUpdate method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowUpdate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowUpdate​(String objectId,
                                                                                   DXEnvironment env)
        Deprecated.
        Use globalWorkflowUpdate(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowUpdate method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowUpdate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowUpdate​(String objectId,
                                                                                   com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                   DXEnvironment env)
        Deprecated.
        Use globalWorkflowUpdate(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowUpdate method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowNew

        public static <T> T globalWorkflowNew​(Class<T> outputClass)
        Invokes the globalWorkflowNew method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowNew

        public static <T> T globalWorkflowNew​(Class<T> outputClass,
                                              DXEnvironment env)
        Invokes the globalWorkflowNew method with an empty input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowNew

        public static <T> T globalWorkflowNew​(Object inputObject,
                                              Class<T> outputClass)
        Invokes the globalWorkflowNew method with the specified input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowNew

        public static <T> T globalWorkflowNew​(Object inputObject,
                                              Class<T> outputClass,
                                              DXEnvironment env)
        Invokes the globalWorkflowNew method with the specified input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowNew()
        Deprecated.
        Use globalWorkflowNew(Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowNew method.

        For more information about this method, see the API specification.

        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowNew​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use globalWorkflowNew(Object, Class) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowNew method with the specified input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowNew​(DXEnvironment env)
        Deprecated.
        Use globalWorkflowNew(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowNew method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • globalWorkflowNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode globalWorkflowNew​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                DXEnvironment env)
        Deprecated.
        Use globalWorkflowNew(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the globalWorkflowNew method with the specified environment and input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobAddTags

        public static <T> T jobAddTags​(String objectId,
                                       Class<T> outputClass)
        Invokes the jobAddTags method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobAddTags

        public static <T> T jobAddTags​(String objectId,
                                       Object inputObject,
                                       Class<T> outputClass)
        Invokes the jobAddTags method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobAddTags

        public static <T> T jobAddTags​(String objectId,
                                       Class<T> outputClass,
                                       DXEnvironment env)
        Invokes the jobAddTags method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobAddTags

        public static <T> T jobAddTags​(String objectId,
                                       Object inputObject,
                                       Class<T> outputClass,
                                       DXEnvironment env)
        Invokes the jobAddTags method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobAddTags​(String objectId)
        Deprecated.
        Use jobAddTags(String, Class) instead and supply your own class to deserialize to.
        Invokes the jobAddTags method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobAddTags​(String objectId,
                                                                         com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use jobAddTags(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the jobAddTags method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobAddTags​(String objectId,
                                                                         DXEnvironment env)
        Deprecated.
        Use jobAddTags(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the jobAddTags method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobAddTags​(String objectId,
                                                                         com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                         DXEnvironment env)
        Deprecated.
        Use jobAddTags(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the jobAddTags method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobDescribe

        public static <T> T jobDescribe​(String objectId,
                                        Class<T> outputClass)
        Invokes the jobDescribe method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobDescribe

        public static <T> T jobDescribe​(String objectId,
                                        Object inputObject,
                                        Class<T> outputClass)
        Invokes the jobDescribe method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobDescribe

        public static <T> T jobDescribe​(String objectId,
                                        Class<T> outputClass,
                                        DXEnvironment env)
        Invokes the jobDescribe method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobDescribe

        public static <T> T jobDescribe​(String objectId,
                                        Object inputObject,
                                        Class<T> outputClass,
                                        DXEnvironment env)
        Invokes the jobDescribe method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobDescribe​(String objectId)
        Deprecated.
        Use jobDescribe(String, Class) instead and supply your own class to deserialize to.
        Invokes the jobDescribe method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobDescribe​(String objectId,
                                                                          com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use jobDescribe(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the jobDescribe method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobDescribe​(String objectId,
                                                                          DXEnvironment env)
        Deprecated.
        Use jobDescribe(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the jobDescribe method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobDescribe​(String objectId,
                                                                          com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                          DXEnvironment env)
        Deprecated.
        Use jobDescribe(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the jobDescribe method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobGetLog

        public static <T> T jobGetLog​(String objectId,
                                      Class<T> outputClass)
        Invokes the jobGetLog method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobGetLog

        public static <T> T jobGetLog​(String objectId,
                                      Object inputObject,
                                      Class<T> outputClass)
        Invokes the jobGetLog method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobGetLog

        public static <T> T jobGetLog​(String objectId,
                                      Class<T> outputClass,
                                      DXEnvironment env)
        Invokes the jobGetLog method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobGetLog

        public static <T> T jobGetLog​(String objectId,
                                      Object inputObject,
                                      Class<T> outputClass,
                                      DXEnvironment env)
        Invokes the jobGetLog method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobGetLog

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobGetLog​(String objectId)
        Deprecated.
        Use jobGetLog(String, Class) instead and supply your own class to deserialize to.
        Invokes the jobGetLog method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobGetLog

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobGetLog​(String objectId,
                                                                        com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use jobGetLog(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the jobGetLog method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobGetLog

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobGetLog​(String objectId,
                                                                        DXEnvironment env)
        Deprecated.
        Use jobGetLog(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the jobGetLog method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobGetLog

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobGetLog​(String objectId,
                                                                        com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                        DXEnvironment env)
        Deprecated.
        Use jobGetLog(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the jobGetLog method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobRemoveTags

        public static <T> T jobRemoveTags​(String objectId,
                                          Class<T> outputClass)
        Invokes the jobRemoveTags method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobRemoveTags

        public static <T> T jobRemoveTags​(String objectId,
                                          Object inputObject,
                                          Class<T> outputClass)
        Invokes the jobRemoveTags method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobRemoveTags

        public static <T> T jobRemoveTags​(String objectId,
                                          Class<T> outputClass,
                                          DXEnvironment env)
        Invokes the jobRemoveTags method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobRemoveTags

        public static <T> T jobRemoveTags​(String objectId,
                                          Object inputObject,
                                          Class<T> outputClass,
                                          DXEnvironment env)
        Invokes the jobRemoveTags method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobRemoveTags​(String objectId)
        Deprecated.
        Use jobRemoveTags(String, Class) instead and supply your own class to deserialize to.
        Invokes the jobRemoveTags method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobRemoveTags​(String objectId,
                                                                            com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use jobRemoveTags(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the jobRemoveTags method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobRemoveTags​(String objectId,
                                                                            DXEnvironment env)
        Deprecated.
        Use jobRemoveTags(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the jobRemoveTags method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobRemoveTags​(String objectId,
                                                                            com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                            DXEnvironment env)
        Deprecated.
        Use jobRemoveTags(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the jobRemoveTags method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobSetProperties

        public static <T> T jobSetProperties​(String objectId,
                                             Class<T> outputClass)
        Invokes the jobSetProperties method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobSetProperties

        public static <T> T jobSetProperties​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass)
        Invokes the jobSetProperties method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobSetProperties

        public static <T> T jobSetProperties​(String objectId,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the jobSetProperties method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobSetProperties

        public static <T> T jobSetProperties​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the jobSetProperties method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobSetProperties​(String objectId)
        Deprecated.
        Use jobSetProperties(String, Class) instead and supply your own class to deserialize to.
        Invokes the jobSetProperties method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobSetProperties​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use jobSetProperties(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the jobSetProperties method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobSetProperties​(String objectId,
                                                                               DXEnvironment env)
        Deprecated.
        Use jobSetProperties(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the jobSetProperties method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobSetProperties​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                               DXEnvironment env)
        Deprecated.
        Use jobSetProperties(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the jobSetProperties method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobTerminate

        public static <T> T jobTerminate​(String objectId,
                                         Class<T> outputClass)
        Invokes the jobTerminate method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobTerminate

        public static <T> T jobTerminate​(String objectId,
                                         Object inputObject,
                                         Class<T> outputClass)
        Invokes the jobTerminate method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobTerminate

        public static <T> T jobTerminate​(String objectId,
                                         Class<T> outputClass,
                                         DXEnvironment env)
        Invokes the jobTerminate method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobTerminate

        public static <T> T jobTerminate​(String objectId,
                                         Object inputObject,
                                         Class<T> outputClass,
                                         DXEnvironment env)
        Invokes the jobTerminate method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobTerminate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobTerminate​(String objectId)
        Deprecated.
        Use jobTerminate(String, Class) instead and supply your own class to deserialize to.
        Invokes the jobTerminate method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobTerminate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobTerminate​(String objectId,
                                                                           com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use jobTerminate(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the jobTerminate method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobTerminate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobTerminate​(String objectId,
                                                                           DXEnvironment env)
        Deprecated.
        Use jobTerminate(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the jobTerminate method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobTerminate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobTerminate​(String objectId,
                                                                           com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                           DXEnvironment env)
        Deprecated.
        Use jobTerminate(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the jobTerminate method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobUpdate

        public static <T> T jobUpdate​(String objectId,
                                      Class<T> outputClass)
        Invokes the jobUpdate method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobUpdate

        public static <T> T jobUpdate​(String objectId,
                                      Object inputObject,
                                      Class<T> outputClass)
        Invokes the jobUpdate method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobUpdate

        public static <T> T jobUpdate​(String objectId,
                                      Class<T> outputClass,
                                      DXEnvironment env)
        Invokes the jobUpdate method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobUpdate

        public static <T> T jobUpdate​(String objectId,
                                      Object inputObject,
                                      Class<T> outputClass,
                                      DXEnvironment env)
        Invokes the jobUpdate method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobUpdate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobUpdate​(String objectId)
        Deprecated.
        Use jobUpdate(String, Class) instead and supply your own class to deserialize to.
        Invokes the jobUpdate method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobUpdate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobUpdate​(String objectId,
                                                                        com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use jobUpdate(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the jobUpdate method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobUpdate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobUpdate​(String objectId,
                                                                        DXEnvironment env)
        Deprecated.
        Use jobUpdate(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the jobUpdate method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobUpdate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobUpdate​(String objectId,
                                                                        com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                        DXEnvironment env)
        Deprecated.
        Use jobUpdate(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the jobUpdate method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobGetIdentityToken

        public static <T> T jobGetIdentityToken​(String objectId,
                                                Class<T> outputClass)
        Invokes the jobGetIdentityToken method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobGetIdentityToken

        public static <T> T jobGetIdentityToken​(String objectId,
                                                Object inputObject,
                                                Class<T> outputClass)
        Invokes the jobGetIdentityToken method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobGetIdentityToken

        public static <T> T jobGetIdentityToken​(String objectId,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the jobGetIdentityToken method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobGetIdentityToken

        public static <T> T jobGetIdentityToken​(String objectId,
                                                Object inputObject,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the jobGetIdentityToken method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobGetIdentityToken

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobGetIdentityToken​(String objectId)
        Deprecated.
        Use jobGetIdentityToken(String, Class) instead and supply your own class to deserialize to.
        Invokes the jobGetIdentityToken method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobGetIdentityToken

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobGetIdentityToken​(String objectId,
                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use jobGetIdentityToken(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the jobGetIdentityToken method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobGetIdentityToken

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobGetIdentityToken​(String objectId,
                                                                                  DXEnvironment env)
        Deprecated.
        Use jobGetIdentityToken(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the jobGetIdentityToken method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobGetIdentityToken

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobGetIdentityToken​(String objectId,
                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                  DXEnvironment env)
        Deprecated.
        Use jobGetIdentityToken(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the jobGetIdentityToken method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobNew

        public static <T> T jobNew​(Class<T> outputClass)
        Invokes the jobNew method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobNew

        public static <T> T jobNew​(Class<T> outputClass,
                                   DXEnvironment env)
        Invokes the jobNew method with an empty input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobNew

        public static <T> T jobNew​(Object inputObject,
                                   Class<T> outputClass)
        Invokes the jobNew method with the specified input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobNew

        public static <T> T jobNew​(Object inputObject,
                                   Class<T> outputClass,
                                   DXEnvironment env)
        Invokes the jobNew method with the specified input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobNew()
        Deprecated.
        Use jobNew(Class) instead and supply your own class to deserialize to.
        Invokes the jobNew method.

        For more information about this method, see the API specification.

        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobNew​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use jobNew(Object, Class) instead and supply your own class to deserialize to.
        Invokes the jobNew method with the specified input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobNew​(DXEnvironment env)
        Deprecated.
        Use jobNew(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the jobNew method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • jobNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode jobNew​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                     DXEnvironment env)
        Deprecated.
        Use jobNew(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the jobNew method with the specified environment and input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • notificationsGet

        public static <T> T notificationsGet​(Class<T> outputClass)
        Invokes the notificationsGet method with an empty input, deserializing to an object of the specified class.
        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • notificationsGet

        public static <T> T notificationsGet​(Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the notificationsGet method with an empty input using the specified environment, deserializing to an object of the specified class.
        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • notificationsGet

        public static <T> T notificationsGet​(Object inputObject,
                                             Class<T> outputClass)
        Invokes the notificationsGet method with the specified input, deserializing to an object of the specified class.
        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • notificationsGet

        public static <T> T notificationsGet​(Object inputObject,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the notificationsGet method with the specified input using the specified environment, deserializing to an object of the specified class.
        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • notificationsGet

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode notificationsGet()
        Deprecated.
        Use notificationsGet(Class) instead and supply your own class to deserialize to.
        Invokes the notificationsGet method.
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • notificationsGet

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode notificationsGet​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use notificationsGet(Object, Class) instead and supply your own class to deserialize to.
        Invokes the notificationsGet method with the specified input parameters.
        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • notificationsGet

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode notificationsGet​(DXEnvironment env)
        Deprecated.
        Use notificationsGet(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the notificationsGet method with the specified environment.
        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • notificationsGet

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode notificationsGet​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                               DXEnvironment env)
        Deprecated.
        Use notificationsGet(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the notificationsGet method with the specified environment and input parameters.
        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • notificationsMarkRead

        public static <T> T notificationsMarkRead​(Class<T> outputClass)
        Invokes the notificationsMarkRead method with an empty input, deserializing to an object of the specified class.
        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • notificationsMarkRead

        public static <T> T notificationsMarkRead​(Class<T> outputClass,
                                                  DXEnvironment env)
        Invokes the notificationsMarkRead method with an empty input using the specified environment, deserializing to an object of the specified class.
        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • notificationsMarkRead

        public static <T> T notificationsMarkRead​(Object inputObject,
                                                  Class<T> outputClass)
        Invokes the notificationsMarkRead method with the specified input, deserializing to an object of the specified class.
        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • notificationsMarkRead

        public static <T> T notificationsMarkRead​(Object inputObject,
                                                  Class<T> outputClass,
                                                  DXEnvironment env)
        Invokes the notificationsMarkRead method with the specified input using the specified environment, deserializing to an object of the specified class.
        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • notificationsMarkRead

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode notificationsMarkRead()
        Deprecated.
        Use notificationsMarkRead(Class) instead and supply your own class to deserialize to.
        Invokes the notificationsMarkRead method.
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • notificationsMarkRead

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode notificationsMarkRead​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use notificationsMarkRead(Object, Class) instead and supply your own class to deserialize to.
        Invokes the notificationsMarkRead method with the specified input parameters.
        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • notificationsMarkRead

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode notificationsMarkRead​(DXEnvironment env)
        Deprecated.
        Use notificationsMarkRead(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the notificationsMarkRead method with the specified environment.
        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • notificationsMarkRead

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode notificationsMarkRead​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                    DXEnvironment env)
        Deprecated.
        Use notificationsMarkRead(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the notificationsMarkRead method with the specified environment and input parameters.
        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgDescribe

        public static <T> T orgDescribe​(String objectId,
                                        Class<T> outputClass)
        Invokes the orgDescribe method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgDescribe

        public static <T> T orgDescribe​(String objectId,
                                        Object inputObject,
                                        Class<T> outputClass)
        Invokes the orgDescribe method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgDescribe

        public static <T> T orgDescribe​(String objectId,
                                        Class<T> outputClass,
                                        DXEnvironment env)
        Invokes the orgDescribe method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgDescribe

        public static <T> T orgDescribe​(String objectId,
                                        Object inputObject,
                                        Class<T> outputClass,
                                        DXEnvironment env)
        Invokes the orgDescribe method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgDescribe​(String objectId)
        Deprecated.
        Use orgDescribe(String, Class) instead and supply your own class to deserialize to.
        Invokes the orgDescribe method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgDescribe​(String objectId,
                                                                          com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use orgDescribe(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the orgDescribe method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgDescribe​(String objectId,
                                                                          DXEnvironment env)
        Deprecated.
        Use orgDescribe(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the orgDescribe method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgDescribe​(String objectId,
                                                                          com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                          DXEnvironment env)
        Deprecated.
        Use orgDescribe(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the orgDescribe method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgFindMembers

        public static <T> T orgFindMembers​(String objectId,
                                           Class<T> outputClass)
        Invokes the orgFindMembers method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgFindMembers

        public static <T> T orgFindMembers​(String objectId,
                                           Object inputObject,
                                           Class<T> outputClass)
        Invokes the orgFindMembers method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgFindMembers

        public static <T> T orgFindMembers​(String objectId,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the orgFindMembers method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgFindMembers

        public static <T> T orgFindMembers​(String objectId,
                                           Object inputObject,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the orgFindMembers method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgFindMembers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgFindMembers​(String objectId)
        Deprecated.
        Use orgFindMembers(String, Class) instead and supply your own class to deserialize to.
        Invokes the orgFindMembers method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgFindMembers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgFindMembers​(String objectId,
                                                                             com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use orgFindMembers(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the orgFindMembers method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgFindMembers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgFindMembers​(String objectId,
                                                                             DXEnvironment env)
        Deprecated.
        Use orgFindMembers(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the orgFindMembers method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgFindMembers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgFindMembers​(String objectId,
                                                                             com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                             DXEnvironment env)
        Deprecated.
        Use orgFindMembers(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the orgFindMembers method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgFindProjects

        public static <T> T orgFindProjects​(String objectId,
                                            Class<T> outputClass)
        Invokes the orgFindProjects method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgFindProjects

        public static <T> T orgFindProjects​(String objectId,
                                            Object inputObject,
                                            Class<T> outputClass)
        Invokes the orgFindProjects method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgFindProjects

        public static <T> T orgFindProjects​(String objectId,
                                            Class<T> outputClass,
                                            DXEnvironment env)
        Invokes the orgFindProjects method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgFindProjects

        public static <T> T orgFindProjects​(String objectId,
                                            Object inputObject,
                                            Class<T> outputClass,
                                            DXEnvironment env)
        Invokes the orgFindProjects method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgFindProjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgFindProjects​(String objectId)
        Deprecated.
        Use orgFindProjects(String, Class) instead and supply your own class to deserialize to.
        Invokes the orgFindProjects method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgFindProjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgFindProjects​(String objectId,
                                                                              com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use orgFindProjects(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the orgFindProjects method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgFindProjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgFindProjects​(String objectId,
                                                                              DXEnvironment env)
        Deprecated.
        Use orgFindProjects(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the orgFindProjects method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgFindProjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgFindProjects​(String objectId,
                                                                              com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                              DXEnvironment env)
        Deprecated.
        Use orgFindProjects(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the orgFindProjects method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgFindApps

        public static <T> T orgFindApps​(String objectId,
                                        Class<T> outputClass)
        Invokes the orgFindApps method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgFindApps

        public static <T> T orgFindApps​(String objectId,
                                        Object inputObject,
                                        Class<T> outputClass)
        Invokes the orgFindApps method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgFindApps

        public static <T> T orgFindApps​(String objectId,
                                        Class<T> outputClass,
                                        DXEnvironment env)
        Invokes the orgFindApps method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgFindApps

        public static <T> T orgFindApps​(String objectId,
                                        Object inputObject,
                                        Class<T> outputClass,
                                        DXEnvironment env)
        Invokes the orgFindApps method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgFindApps

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgFindApps​(String objectId)
        Deprecated.
        Use orgFindApps(String, Class) instead and supply your own class to deserialize to.
        Invokes the orgFindApps method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgFindApps

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgFindApps​(String objectId,
                                                                          com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use orgFindApps(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the orgFindApps method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgFindApps

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgFindApps​(String objectId,
                                                                          DXEnvironment env)
        Deprecated.
        Use orgFindApps(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the orgFindApps method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgFindApps

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgFindApps​(String objectId,
                                                                          com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                          DXEnvironment env)
        Deprecated.
        Use orgFindApps(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the orgFindApps method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgInvite

        public static <T> T orgInvite​(String objectId,
                                      Class<T> outputClass)
        Invokes the orgInvite method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgInvite

        public static <T> T orgInvite​(String objectId,
                                      Object inputObject,
                                      Class<T> outputClass)
        Invokes the orgInvite method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgInvite

        public static <T> T orgInvite​(String objectId,
                                      Class<T> outputClass,
                                      DXEnvironment env)
        Invokes the orgInvite method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgInvite

        public static <T> T orgInvite​(String objectId,
                                      Object inputObject,
                                      Class<T> outputClass,
                                      DXEnvironment env)
        Invokes the orgInvite method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgInvite

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgInvite​(String objectId)
        Deprecated.
        Use orgInvite(String, Class) instead and supply your own class to deserialize to.
        Invokes the orgInvite method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgInvite

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgInvite​(String objectId,
                                                                        com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use orgInvite(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the orgInvite method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgInvite

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgInvite​(String objectId,
                                                                        DXEnvironment env)
        Deprecated.
        Use orgInvite(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the orgInvite method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgInvite

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgInvite​(String objectId,
                                                                        com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                        DXEnvironment env)
        Deprecated.
        Use orgInvite(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the orgInvite method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgRemoveMember

        public static <T> T orgRemoveMember​(String objectId,
                                            Class<T> outputClass)
        Invokes the orgRemoveMember method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgRemoveMember

        public static <T> T orgRemoveMember​(String objectId,
                                            Object inputObject,
                                            Class<T> outputClass)
        Invokes the orgRemoveMember method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgRemoveMember

        public static <T> T orgRemoveMember​(String objectId,
                                            Class<T> outputClass,
                                            DXEnvironment env)
        Invokes the orgRemoveMember method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgRemoveMember

        public static <T> T orgRemoveMember​(String objectId,
                                            Object inputObject,
                                            Class<T> outputClass,
                                            DXEnvironment env)
        Invokes the orgRemoveMember method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgRemoveMember

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgRemoveMember​(String objectId)
        Deprecated.
        Use orgRemoveMember(String, Class) instead and supply your own class to deserialize to.
        Invokes the orgRemoveMember method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgRemoveMember

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgRemoveMember​(String objectId,
                                                                              com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use orgRemoveMember(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the orgRemoveMember method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgRemoveMember

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgRemoveMember​(String objectId,
                                                                              DXEnvironment env)
        Deprecated.
        Use orgRemoveMember(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the orgRemoveMember method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgRemoveMember

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgRemoveMember​(String objectId,
                                                                              com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                              DXEnvironment env)
        Deprecated.
        Use orgRemoveMember(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the orgRemoveMember method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgSetMemberAccess

        public static <T> T orgSetMemberAccess​(String objectId,
                                               Class<T> outputClass)
        Invokes the orgSetMemberAccess method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgSetMemberAccess

        public static <T> T orgSetMemberAccess​(String objectId,
                                               Object inputObject,
                                               Class<T> outputClass)
        Invokes the orgSetMemberAccess method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgSetMemberAccess

        public static <T> T orgSetMemberAccess​(String objectId,
                                               Class<T> outputClass,
                                               DXEnvironment env)
        Invokes the orgSetMemberAccess method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgSetMemberAccess

        public static <T> T orgSetMemberAccess​(String objectId,
                                               Object inputObject,
                                               Class<T> outputClass,
                                               DXEnvironment env)
        Invokes the orgSetMemberAccess method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgSetMemberAccess

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgSetMemberAccess​(String objectId)
        Deprecated.
        Use orgSetMemberAccess(String, Class) instead and supply your own class to deserialize to.
        Invokes the orgSetMemberAccess method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgSetMemberAccess

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgSetMemberAccess​(String objectId,
                                                                                 com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use orgSetMemberAccess(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the orgSetMemberAccess method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgSetMemberAccess

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgSetMemberAccess​(String objectId,
                                                                                 DXEnvironment env)
        Deprecated.
        Use orgSetMemberAccess(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the orgSetMemberAccess method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgSetMemberAccess

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgSetMemberAccess​(String objectId,
                                                                                 com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                 DXEnvironment env)
        Deprecated.
        Use orgSetMemberAccess(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the orgSetMemberAccess method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgUpdate

        public static <T> T orgUpdate​(String objectId,
                                      Class<T> outputClass)
        Invokes the orgUpdate method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgUpdate

        public static <T> T orgUpdate​(String objectId,
                                      Object inputObject,
                                      Class<T> outputClass)
        Invokes the orgUpdate method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgUpdate

        public static <T> T orgUpdate​(String objectId,
                                      Class<T> outputClass,
                                      DXEnvironment env)
        Invokes the orgUpdate method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgUpdate

        public static <T> T orgUpdate​(String objectId,
                                      Object inputObject,
                                      Class<T> outputClass,
                                      DXEnvironment env)
        Invokes the orgUpdate method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgUpdate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgUpdate​(String objectId)
        Deprecated.
        Use orgUpdate(String, Class) instead and supply your own class to deserialize to.
        Invokes the orgUpdate method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgUpdate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgUpdate​(String objectId,
                                                                        com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use orgUpdate(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the orgUpdate method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgUpdate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgUpdate​(String objectId,
                                                                        DXEnvironment env)
        Deprecated.
        Use orgUpdate(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the orgUpdate method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgUpdate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgUpdate​(String objectId,
                                                                        com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                        DXEnvironment env)
        Deprecated.
        Use orgUpdate(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the orgUpdate method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgNew

        public static <T> T orgNew​(Class<T> outputClass)
        Invokes the orgNew method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgNew

        public static <T> T orgNew​(Class<T> outputClass,
                                   DXEnvironment env)
        Invokes the orgNew method with an empty input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgNew

        public static <T> T orgNew​(Object inputObject,
                                   Class<T> outputClass)
        Invokes the orgNew method with the specified input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgNew

        public static <T> T orgNew​(Object inputObject,
                                   Class<T> outputClass,
                                   DXEnvironment env)
        Invokes the orgNew method with the specified input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgNew()
        Deprecated.
        Use orgNew(Class) instead and supply your own class to deserialize to.
        Invokes the orgNew method.

        For more information about this method, see the API specification.

        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgNew​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use orgNew(Object, Class) instead and supply your own class to deserialize to.
        Invokes the orgNew method with the specified input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgNew​(DXEnvironment env)
        Deprecated.
        Use orgNew(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the orgNew method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • orgNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode orgNew​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                     DXEnvironment env)
        Deprecated.
        Use orgNew(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the orgNew method with the specified environment and input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectAddTags

        public static <T> T projectAddTags​(String objectId,
                                           Class<T> outputClass)
        Invokes the projectAddTags method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectAddTags

        public static <T> T projectAddTags​(String objectId,
                                           Object inputObject,
                                           Class<T> outputClass)
        Invokes the projectAddTags method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectAddTags

        public static <T> T projectAddTags​(String objectId,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the projectAddTags method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectAddTags

        public static <T> T projectAddTags​(String objectId,
                                           Object inputObject,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the projectAddTags method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectAddTags​(String objectId)
        Deprecated.
        Use projectAddTags(String, Class) instead and supply your own class to deserialize to.
        Invokes the projectAddTags method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectAddTags​(String objectId,
                                                                             com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use projectAddTags(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the projectAddTags method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectAddTags​(String objectId,
                                                                             DXEnvironment env)
        Deprecated.
        Use projectAddTags(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectAddTags method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectAddTags​(String objectId,
                                                                             com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                             DXEnvironment env)
        Deprecated.
        Use projectAddTags(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectAddTags method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectArchive

        public static <T> T projectArchive​(String objectId,
                                           Class<T> outputClass)
        Invokes the projectArchive method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectArchive

        public static <T> T projectArchive​(String objectId,
                                           Object inputObject,
                                           Class<T> outputClass)
        Invokes the projectArchive method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectArchive

        public static <T> T projectArchive​(String objectId,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the projectArchive method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectArchive

        public static <T> T projectArchive​(String objectId,
                                           Object inputObject,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the projectArchive method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectArchive

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectArchive​(String objectId)
        Deprecated.
        Use projectArchive(String, Class) instead and supply your own class to deserialize to.
        Invokes the projectArchive method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectArchive

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectArchive​(String objectId,
                                                                             com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use projectArchive(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the projectArchive method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectArchive

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectArchive​(String objectId,
                                                                             DXEnvironment env)
        Deprecated.
        Use projectArchive(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectArchive method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectArchive

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectArchive​(String objectId,
                                                                             com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                             DXEnvironment env)
        Deprecated.
        Use projectArchive(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectArchive method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectUnarchive

        public static <T> T projectUnarchive​(String objectId,
                                             Class<T> outputClass)
        Invokes the projectUnarchive method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectUnarchive

        public static <T> T projectUnarchive​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass)
        Invokes the projectUnarchive method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectUnarchive

        public static <T> T projectUnarchive​(String objectId,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the projectUnarchive method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectUnarchive

        public static <T> T projectUnarchive​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the projectUnarchive method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectUnarchive

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectUnarchive​(String objectId)
        Deprecated.
        Use projectUnarchive(String, Class) instead and supply your own class to deserialize to.
        Invokes the projectUnarchive method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectUnarchive

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectUnarchive​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use projectUnarchive(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the projectUnarchive method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectUnarchive

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectUnarchive​(String objectId,
                                                                               DXEnvironment env)
        Deprecated.
        Use projectUnarchive(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectUnarchive method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectUnarchive

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectUnarchive​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                               DXEnvironment env)
        Deprecated.
        Use projectUnarchive(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectUnarchive method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectClone

        public static <T> T projectClone​(String objectId,
                                         Class<T> outputClass)
        Invokes the projectClone method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectClone

        public static <T> T projectClone​(String objectId,
                                         Object inputObject,
                                         Class<T> outputClass)
        Invokes the projectClone method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectClone

        public static <T> T projectClone​(String objectId,
                                         Class<T> outputClass,
                                         DXEnvironment env)
        Invokes the projectClone method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectClone

        public static <T> T projectClone​(String objectId,
                                         Object inputObject,
                                         Class<T> outputClass,
                                         DXEnvironment env)
        Invokes the projectClone method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectClone

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectClone​(String objectId)
        Deprecated.
        Use projectClone(String, Class) instead and supply your own class to deserialize to.
        Invokes the projectClone method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectClone

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectClone​(String objectId,
                                                                           com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use projectClone(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the projectClone method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectClone

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectClone​(String objectId,
                                                                           DXEnvironment env)
        Deprecated.
        Use projectClone(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectClone method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectClone

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectClone​(String objectId,
                                                                           com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                           DXEnvironment env)
        Deprecated.
        Use projectClone(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectClone method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectDecreasePermissions

        public static <T> T projectDecreasePermissions​(String objectId,
                                                       Class<T> outputClass)
        Invokes the projectDecreasePermissions method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectDecreasePermissions

        public static <T> T projectDecreasePermissions​(String objectId,
                                                       Object inputObject,
                                                       Class<T> outputClass)
        Invokes the projectDecreasePermissions method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectDecreasePermissions

        public static <T> T projectDecreasePermissions​(String objectId,
                                                       Class<T> outputClass,
                                                       DXEnvironment env)
        Invokes the projectDecreasePermissions method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectDecreasePermissions

        public static <T> T projectDecreasePermissions​(String objectId,
                                                       Object inputObject,
                                                       Class<T> outputClass,
                                                       DXEnvironment env)
        Invokes the projectDecreasePermissions method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectDecreasePermissions

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectDecreasePermissions​(String objectId)
        Deprecated.
        Use projectDecreasePermissions(String, Class) instead and supply your own class to deserialize to.
        Invokes the projectDecreasePermissions method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectDecreasePermissions

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectDecreasePermissions​(String objectId,
                                                                                         com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use projectDecreasePermissions(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the projectDecreasePermissions method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectDecreasePermissions

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectDecreasePermissions​(String objectId,
                                                                                         DXEnvironment env)
        Deprecated.
        Use projectDecreasePermissions(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectDecreasePermissions method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectDecreasePermissions

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectDecreasePermissions​(String objectId,
                                                                                         com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                         DXEnvironment env)
        Deprecated.
        Use projectDecreasePermissions(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectDecreasePermissions method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectDescribe

        public static <T> T projectDescribe​(String objectId,
                                            Class<T> outputClass)
        Invokes the projectDescribe method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectDescribe

        public static <T> T projectDescribe​(String objectId,
                                            Object inputObject,
                                            Class<T> outputClass)
        Invokes the projectDescribe method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectDescribe

        public static <T> T projectDescribe​(String objectId,
                                            Class<T> outputClass,
                                            DXEnvironment env)
        Invokes the projectDescribe method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectDescribe

        public static <T> T projectDescribe​(String objectId,
                                            Object inputObject,
                                            Class<T> outputClass,
                                            DXEnvironment env)
        Invokes the projectDescribe method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectDescribe​(String objectId)
        Deprecated.
        Use projectDescribe(String, Class) instead and supply your own class to deserialize to.
        Invokes the projectDescribe method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectDescribe​(String objectId,
                                                                              com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use projectDescribe(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the projectDescribe method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectDescribe​(String objectId,
                                                                              DXEnvironment env)
        Deprecated.
        Use projectDescribe(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectDescribe method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectDescribe​(String objectId,
                                                                              com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                              DXEnvironment env)
        Deprecated.
        Use projectDescribe(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectDescribe method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectDestroy

        public static <T> T projectDestroy​(String objectId,
                                           Class<T> outputClass)
        Invokes the projectDestroy method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectDestroy

        public static <T> T projectDestroy​(String objectId,
                                           Object inputObject,
                                           Class<T> outputClass)
        Invokes the projectDestroy method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectDestroy

        public static <T> T projectDestroy​(String objectId,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the projectDestroy method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectDestroy

        public static <T> T projectDestroy​(String objectId,
                                           Object inputObject,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the projectDestroy method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectDestroy

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectDestroy​(String objectId)
        Deprecated.
        Use projectDestroy(String, Class) instead and supply your own class to deserialize to.
        Invokes the projectDestroy method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectDestroy

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectDestroy​(String objectId,
                                                                             com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use projectDestroy(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the projectDestroy method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectDestroy

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectDestroy​(String objectId,
                                                                             DXEnvironment env)
        Deprecated.
        Use projectDestroy(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectDestroy method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectDestroy

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectDestroy​(String objectId,
                                                                             com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                             DXEnvironment env)
        Deprecated.
        Use projectDestroy(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectDestroy method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectInvite

        public static <T> T projectInvite​(String objectId,
                                          Class<T> outputClass)
        Invokes the projectInvite method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectInvite

        public static <T> T projectInvite​(String objectId,
                                          Object inputObject,
                                          Class<T> outputClass)
        Invokes the projectInvite method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectInvite

        public static <T> T projectInvite​(String objectId,
                                          Class<T> outputClass,
                                          DXEnvironment env)
        Invokes the projectInvite method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectInvite

        public static <T> T projectInvite​(String objectId,
                                          Object inputObject,
                                          Class<T> outputClass,
                                          DXEnvironment env)
        Invokes the projectInvite method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectInvite

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectInvite​(String objectId)
        Deprecated.
        Use projectInvite(String, Class) instead and supply your own class to deserialize to.
        Invokes the projectInvite method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectInvite

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectInvite​(String objectId,
                                                                            com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use projectInvite(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the projectInvite method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectInvite

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectInvite​(String objectId,
                                                                            DXEnvironment env)
        Deprecated.
        Use projectInvite(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectInvite method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectInvite

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectInvite​(String objectId,
                                                                            com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                            DXEnvironment env)
        Deprecated.
        Use projectInvite(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectInvite method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectLeave

        public static <T> T projectLeave​(String objectId,
                                         Class<T> outputClass)
        Invokes the projectLeave method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectLeave

        public static <T> T projectLeave​(String objectId,
                                         Object inputObject,
                                         Class<T> outputClass)
        Invokes the projectLeave method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectLeave

        public static <T> T projectLeave​(String objectId,
                                         Class<T> outputClass,
                                         DXEnvironment env)
        Invokes the projectLeave method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectLeave

        public static <T> T projectLeave​(String objectId,
                                         Object inputObject,
                                         Class<T> outputClass,
                                         DXEnvironment env)
        Invokes the projectLeave method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectLeave

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectLeave​(String objectId)
        Deprecated.
        Use projectLeave(String, Class) instead and supply your own class to deserialize to.
        Invokes the projectLeave method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectLeave

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectLeave​(String objectId,
                                                                           com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use projectLeave(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the projectLeave method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectLeave

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectLeave​(String objectId,
                                                                           DXEnvironment env)
        Deprecated.
        Use projectLeave(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectLeave method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectLeave

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectLeave​(String objectId,
                                                                           com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                           DXEnvironment env)
        Deprecated.
        Use projectLeave(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectLeave method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectListFolder

        public static <T> T projectListFolder​(String objectId,
                                              Class<T> outputClass)
        Invokes the projectListFolder method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectListFolder

        public static <T> T projectListFolder​(String objectId,
                                              Object inputObject,
                                              Class<T> outputClass)
        Invokes the projectListFolder method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectListFolder

        public static <T> T projectListFolder​(String objectId,
                                              Class<T> outputClass,
                                              DXEnvironment env)
        Invokes the projectListFolder method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectListFolder

        public static <T> T projectListFolder​(String objectId,
                                              Object inputObject,
                                              Class<T> outputClass,
                                              DXEnvironment env)
        Invokes the projectListFolder method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectListFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectListFolder​(String objectId)
        Deprecated.
        Use projectListFolder(String, Class) instead and supply your own class to deserialize to.
        Invokes the projectListFolder method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectListFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectListFolder​(String objectId,
                                                                                com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use projectListFolder(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the projectListFolder method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectListFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectListFolder​(String objectId,
                                                                                DXEnvironment env)
        Deprecated.
        Use projectListFolder(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectListFolder method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectListFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectListFolder​(String objectId,
                                                                                com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                DXEnvironment env)
        Deprecated.
        Use projectListFolder(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectListFolder method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectMove

        public static <T> T projectMove​(String objectId,
                                        Class<T> outputClass)
        Invokes the projectMove method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectMove

        public static <T> T projectMove​(String objectId,
                                        Object inputObject,
                                        Class<T> outputClass)
        Invokes the projectMove method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectMove

        public static <T> T projectMove​(String objectId,
                                        Class<T> outputClass,
                                        DXEnvironment env)
        Invokes the projectMove method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectMove

        public static <T> T projectMove​(String objectId,
                                        Object inputObject,
                                        Class<T> outputClass,
                                        DXEnvironment env)
        Invokes the projectMove method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectMove

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectMove​(String objectId)
        Deprecated.
        Use projectMove(String, Class) instead and supply your own class to deserialize to.
        Invokes the projectMove method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectMove

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectMove​(String objectId,
                                                                          com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use projectMove(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the projectMove method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectMove

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectMove​(String objectId,
                                                                          DXEnvironment env)
        Deprecated.
        Use projectMove(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectMove method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectMove

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectMove​(String objectId,
                                                                          com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                          DXEnvironment env)
        Deprecated.
        Use projectMove(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectMove method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectNewFolder

        public static <T> T projectNewFolder​(String objectId,
                                             Class<T> outputClass)
        Invokes the projectNewFolder method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectNewFolder

        public static <T> T projectNewFolder​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass)
        Invokes the projectNewFolder method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectNewFolder

        public static <T> T projectNewFolder​(String objectId,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the projectNewFolder method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectNewFolder

        public static <T> T projectNewFolder​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the projectNewFolder method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectNewFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectNewFolder​(String objectId)
        Deprecated.
        Use projectNewFolder(String, Class) instead and supply your own class to deserialize to.
        Invokes the projectNewFolder method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectNewFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectNewFolder​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use projectNewFolder(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the projectNewFolder method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectNewFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectNewFolder​(String objectId,
                                                                               DXEnvironment env)
        Deprecated.
        Use projectNewFolder(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectNewFolder method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectNewFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectNewFolder​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                               DXEnvironment env)
        Deprecated.
        Use projectNewFolder(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectNewFolder method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectRemoveFolder

        public static <T> T projectRemoveFolder​(String objectId,
                                                Class<T> outputClass)
        Invokes the projectRemoveFolder method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectRemoveFolder

        public static <T> T projectRemoveFolder​(String objectId,
                                                Object inputObject,
                                                Class<T> outputClass)
        Invokes the projectRemoveFolder method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectRemoveFolder

        public static <T> T projectRemoveFolder​(String objectId,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the projectRemoveFolder method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectRemoveFolder

        public static <T> T projectRemoveFolder​(String objectId,
                                                Object inputObject,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the projectRemoveFolder method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectRemoveFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectRemoveFolder​(String objectId)
        Deprecated.
        Use projectRemoveFolder(String, Class) instead and supply your own class to deserialize to.
        Invokes the projectRemoveFolder method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectRemoveFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectRemoveFolder​(String objectId,
                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use projectRemoveFolder(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the projectRemoveFolder method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectRemoveFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectRemoveFolder​(String objectId,
                                                                                  DXEnvironment env)
        Deprecated.
        Use projectRemoveFolder(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectRemoveFolder method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectRemoveFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectRemoveFolder​(String objectId,
                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                  DXEnvironment env)
        Deprecated.
        Use projectRemoveFolder(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectRemoveFolder method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectRemoveObjects

        public static <T> T projectRemoveObjects​(String objectId,
                                                 Class<T> outputClass)
        Invokes the projectRemoveObjects method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectRemoveObjects

        public static <T> T projectRemoveObjects​(String objectId,
                                                 Object inputObject,
                                                 Class<T> outputClass)
        Invokes the projectRemoveObjects method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectRemoveObjects

        public static <T> T projectRemoveObjects​(String objectId,
                                                 Class<T> outputClass,
                                                 DXEnvironment env)
        Invokes the projectRemoveObjects method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectRemoveObjects

        public static <T> T projectRemoveObjects​(String objectId,
                                                 Object inputObject,
                                                 Class<T> outputClass,
                                                 DXEnvironment env)
        Invokes the projectRemoveObjects method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectRemoveObjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectRemoveObjects​(String objectId)
        Deprecated.
        Use projectRemoveObjects(String, Class) instead and supply your own class to deserialize to.
        Invokes the projectRemoveObjects method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectRemoveObjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectRemoveObjects​(String objectId,
                                                                                   com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use projectRemoveObjects(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the projectRemoveObjects method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectRemoveObjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectRemoveObjects​(String objectId,
                                                                                   DXEnvironment env)
        Deprecated.
        Use projectRemoveObjects(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectRemoveObjects method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectRemoveObjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectRemoveObjects​(String objectId,
                                                                                   com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                   DXEnvironment env)
        Deprecated.
        Use projectRemoveObjects(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectRemoveObjects method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectRemoveTags

        public static <T> T projectRemoveTags​(String objectId,
                                              Class<T> outputClass)
        Invokes the projectRemoveTags method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectRemoveTags

        public static <T> T projectRemoveTags​(String objectId,
                                              Object inputObject,
                                              Class<T> outputClass)
        Invokes the projectRemoveTags method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectRemoveTags

        public static <T> T projectRemoveTags​(String objectId,
                                              Class<T> outputClass,
                                              DXEnvironment env)
        Invokes the projectRemoveTags method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectRemoveTags

        public static <T> T projectRemoveTags​(String objectId,
                                              Object inputObject,
                                              Class<T> outputClass,
                                              DXEnvironment env)
        Invokes the projectRemoveTags method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectRemoveTags​(String objectId)
        Deprecated.
        Use projectRemoveTags(String, Class) instead and supply your own class to deserialize to.
        Invokes the projectRemoveTags method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectRemoveTags​(String objectId,
                                                                                com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use projectRemoveTags(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the projectRemoveTags method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectRemoveTags​(String objectId,
                                                                                DXEnvironment env)
        Deprecated.
        Use projectRemoveTags(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectRemoveTags method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectRemoveTags​(String objectId,
                                                                                com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                DXEnvironment env)
        Deprecated.
        Use projectRemoveTags(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectRemoveTags method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectRenameFolder

        public static <T> T projectRenameFolder​(String objectId,
                                                Class<T> outputClass)
        Invokes the projectRenameFolder method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectRenameFolder

        public static <T> T projectRenameFolder​(String objectId,
                                                Object inputObject,
                                                Class<T> outputClass)
        Invokes the projectRenameFolder method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectRenameFolder

        public static <T> T projectRenameFolder​(String objectId,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the projectRenameFolder method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectRenameFolder

        public static <T> T projectRenameFolder​(String objectId,
                                                Object inputObject,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the projectRenameFolder method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectRenameFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectRenameFolder​(String objectId)
        Deprecated.
        Use projectRenameFolder(String, Class) instead and supply your own class to deserialize to.
        Invokes the projectRenameFolder method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectRenameFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectRenameFolder​(String objectId,
                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use projectRenameFolder(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the projectRenameFolder method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectRenameFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectRenameFolder​(String objectId,
                                                                                  DXEnvironment env)
        Deprecated.
        Use projectRenameFolder(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectRenameFolder method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectRenameFolder

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectRenameFolder​(String objectId,
                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                  DXEnvironment env)
        Deprecated.
        Use projectRenameFolder(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectRenameFolder method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectSetProperties

        public static <T> T projectSetProperties​(String objectId,
                                                 Class<T> outputClass)
        Invokes the projectSetProperties method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectSetProperties

        public static <T> T projectSetProperties​(String objectId,
                                                 Object inputObject,
                                                 Class<T> outputClass)
        Invokes the projectSetProperties method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectSetProperties

        public static <T> T projectSetProperties​(String objectId,
                                                 Class<T> outputClass,
                                                 DXEnvironment env)
        Invokes the projectSetProperties method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectSetProperties

        public static <T> T projectSetProperties​(String objectId,
                                                 Object inputObject,
                                                 Class<T> outputClass,
                                                 DXEnvironment env)
        Invokes the projectSetProperties method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectSetProperties​(String objectId)
        Deprecated.
        Use projectSetProperties(String, Class) instead and supply your own class to deserialize to.
        Invokes the projectSetProperties method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectSetProperties​(String objectId,
                                                                                   com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use projectSetProperties(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the projectSetProperties method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectSetProperties​(String objectId,
                                                                                   DXEnvironment env)
        Deprecated.
        Use projectSetProperties(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectSetProperties method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectSetProperties​(String objectId,
                                                                                   com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                   DXEnvironment env)
        Deprecated.
        Use projectSetProperties(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectSetProperties method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectTransfer

        public static <T> T projectTransfer​(String objectId,
                                            Class<T> outputClass)
        Invokes the projectTransfer method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectTransfer

        public static <T> T projectTransfer​(String objectId,
                                            Object inputObject,
                                            Class<T> outputClass)
        Invokes the projectTransfer method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectTransfer

        public static <T> T projectTransfer​(String objectId,
                                            Class<T> outputClass,
                                            DXEnvironment env)
        Invokes the projectTransfer method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectTransfer

        public static <T> T projectTransfer​(String objectId,
                                            Object inputObject,
                                            Class<T> outputClass,
                                            DXEnvironment env)
        Invokes the projectTransfer method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectTransfer

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectTransfer​(String objectId)
        Deprecated.
        Use projectTransfer(String, Class) instead and supply your own class to deserialize to.
        Invokes the projectTransfer method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectTransfer

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectTransfer​(String objectId,
                                                                              com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use projectTransfer(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the projectTransfer method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectTransfer

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectTransfer​(String objectId,
                                                                              DXEnvironment env)
        Deprecated.
        Use projectTransfer(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectTransfer method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectTransfer

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectTransfer​(String objectId,
                                                                              com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                              DXEnvironment env)
        Deprecated.
        Use projectTransfer(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectTransfer method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectUpdate

        public static <T> T projectUpdate​(String objectId,
                                          Class<T> outputClass)
        Invokes the projectUpdate method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectUpdate

        public static <T> T projectUpdate​(String objectId,
                                          Object inputObject,
                                          Class<T> outputClass)
        Invokes the projectUpdate method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectUpdate

        public static <T> T projectUpdate​(String objectId,
                                          Class<T> outputClass,
                                          DXEnvironment env)
        Invokes the projectUpdate method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectUpdate

        public static <T> T projectUpdate​(String objectId,
                                          Object inputObject,
                                          Class<T> outputClass,
                                          DXEnvironment env)
        Invokes the projectUpdate method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectUpdate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectUpdate​(String objectId)
        Deprecated.
        Use projectUpdate(String, Class) instead and supply your own class to deserialize to.
        Invokes the projectUpdate method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectUpdate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectUpdate​(String objectId,
                                                                            com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use projectUpdate(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the projectUpdate method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectUpdate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectUpdate​(String objectId,
                                                                            DXEnvironment env)
        Deprecated.
        Use projectUpdate(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectUpdate method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectUpdate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectUpdate​(String objectId,
                                                                            com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                            DXEnvironment env)
        Deprecated.
        Use projectUpdate(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectUpdate method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectUpdateSponsorship

        public static <T> T projectUpdateSponsorship​(String objectId,
                                                     Class<T> outputClass)
        Invokes the projectUpdateSponsorship method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectUpdateSponsorship

        public static <T> T projectUpdateSponsorship​(String objectId,
                                                     Object inputObject,
                                                     Class<T> outputClass)
        Invokes the projectUpdateSponsorship method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectUpdateSponsorship

        public static <T> T projectUpdateSponsorship​(String objectId,
                                                     Class<T> outputClass,
                                                     DXEnvironment env)
        Invokes the projectUpdateSponsorship method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectUpdateSponsorship

        public static <T> T projectUpdateSponsorship​(String objectId,
                                                     Object inputObject,
                                                     Class<T> outputClass,
                                                     DXEnvironment env)
        Invokes the projectUpdateSponsorship method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectUpdateSponsorship

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectUpdateSponsorship​(String objectId)
        Deprecated.
        Use projectUpdateSponsorship(String, Class) instead and supply your own class to deserialize to.
        Invokes the projectUpdateSponsorship method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectUpdateSponsorship

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectUpdateSponsorship​(String objectId,
                                                                                       com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use projectUpdateSponsorship(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the projectUpdateSponsorship method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectUpdateSponsorship

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectUpdateSponsorship​(String objectId,
                                                                                       DXEnvironment env)
        Deprecated.
        Use projectUpdateSponsorship(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectUpdateSponsorship method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectUpdateSponsorship

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectUpdateSponsorship​(String objectId,
                                                                                       com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                       DXEnvironment env)
        Deprecated.
        Use projectUpdateSponsorship(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectUpdateSponsorship method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectNew

        public static <T> T projectNew​(Class<T> outputClass)
        Invokes the projectNew method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectNew

        public static <T> T projectNew​(Class<T> outputClass,
                                       DXEnvironment env)
        Invokes the projectNew method with an empty input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectNew

        public static <T> T projectNew​(Object inputObject,
                                       Class<T> outputClass)
        Invokes the projectNew method with the specified input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectNew

        public static <T> T projectNew​(Object inputObject,
                                       Class<T> outputClass,
                                       DXEnvironment env)
        Invokes the projectNew method with the specified input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectNew()
        Deprecated.
        Use projectNew(Class) instead and supply your own class to deserialize to.
        Invokes the projectNew method.

        For more information about this method, see the API specification.

        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectNew​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use projectNew(Object, Class) instead and supply your own class to deserialize to.
        Invokes the projectNew method with the specified input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectNew​(DXEnvironment env)
        Deprecated.
        Use projectNew(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectNew method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • projectNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode projectNew​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                         DXEnvironment env)
        Deprecated.
        Use projectNew(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the projectNew method with the specified environment and input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordAddTags

        public static <T> T recordAddTags​(String objectId,
                                          Class<T> outputClass)
        Invokes the recordAddTags method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordAddTags

        public static <T> T recordAddTags​(String objectId,
                                          Object inputObject,
                                          Class<T> outputClass)
        Invokes the recordAddTags method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordAddTags

        public static <T> T recordAddTags​(String objectId,
                                          Class<T> outputClass,
                                          DXEnvironment env)
        Invokes the recordAddTags method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordAddTags

        public static <T> T recordAddTags​(String objectId,
                                          Object inputObject,
                                          Class<T> outputClass,
                                          DXEnvironment env)
        Invokes the recordAddTags method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordAddTags​(String objectId)
        Deprecated.
        Use recordAddTags(String, Class) instead and supply your own class to deserialize to.
        Invokes the recordAddTags method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordAddTags​(String objectId,
                                                                            com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use recordAddTags(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the recordAddTags method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordAddTags​(String objectId,
                                                                            DXEnvironment env)
        Deprecated.
        Use recordAddTags(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the recordAddTags method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordAddTags​(String objectId,
                                                                            com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                            DXEnvironment env)
        Deprecated.
        Use recordAddTags(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the recordAddTags method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordAddTypes

        public static <T> T recordAddTypes​(String objectId,
                                           Class<T> outputClass)
        Invokes the recordAddTypes method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordAddTypes

        public static <T> T recordAddTypes​(String objectId,
                                           Object inputObject,
                                           Class<T> outputClass)
        Invokes the recordAddTypes method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordAddTypes

        public static <T> T recordAddTypes​(String objectId,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the recordAddTypes method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordAddTypes

        public static <T> T recordAddTypes​(String objectId,
                                           Object inputObject,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the recordAddTypes method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordAddTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordAddTypes​(String objectId)
        Deprecated.
        Use recordAddTypes(String, Class) instead and supply your own class to deserialize to.
        Invokes the recordAddTypes method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordAddTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordAddTypes​(String objectId,
                                                                             com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use recordAddTypes(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the recordAddTypes method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordAddTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordAddTypes​(String objectId,
                                                                             DXEnvironment env)
        Deprecated.
        Use recordAddTypes(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the recordAddTypes method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordAddTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordAddTypes​(String objectId,
                                                                             com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                             DXEnvironment env)
        Deprecated.
        Use recordAddTypes(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the recordAddTypes method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordClose

        public static <T> T recordClose​(String objectId,
                                        Class<T> outputClass)
        Invokes the recordClose method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordClose

        public static <T> T recordClose​(String objectId,
                                        Object inputObject,
                                        Class<T> outputClass)
        Invokes the recordClose method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordClose

        public static <T> T recordClose​(String objectId,
                                        Class<T> outputClass,
                                        DXEnvironment env)
        Invokes the recordClose method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordClose

        public static <T> T recordClose​(String objectId,
                                        Object inputObject,
                                        Class<T> outputClass,
                                        DXEnvironment env)
        Invokes the recordClose method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordClose

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordClose​(String objectId)
        Deprecated.
        Use recordClose(String, Class) instead and supply your own class to deserialize to.
        Invokes the recordClose method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordClose

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordClose​(String objectId,
                                                                          com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use recordClose(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the recordClose method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordClose

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordClose​(String objectId,
                                                                          DXEnvironment env)
        Deprecated.
        Use recordClose(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the recordClose method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordClose

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordClose​(String objectId,
                                                                          com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                          DXEnvironment env)
        Deprecated.
        Use recordClose(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the recordClose method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordDescribe

        public static <T> T recordDescribe​(String objectId,
                                           Class<T> outputClass)
        Invokes the recordDescribe method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordDescribe

        public static <T> T recordDescribe​(String objectId,
                                           Object inputObject,
                                           Class<T> outputClass)
        Invokes the recordDescribe method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordDescribe

        public static <T> T recordDescribe​(String objectId,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the recordDescribe method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordDescribe

        public static <T> T recordDescribe​(String objectId,
                                           Object inputObject,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the recordDescribe method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordDescribe​(String objectId)
        Deprecated.
        Use recordDescribe(String, Class) instead and supply your own class to deserialize to.
        Invokes the recordDescribe method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordDescribe​(String objectId,
                                                                             com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use recordDescribe(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the recordDescribe method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordDescribe​(String objectId,
                                                                             DXEnvironment env)
        Deprecated.
        Use recordDescribe(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the recordDescribe method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordDescribe​(String objectId,
                                                                             com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                             DXEnvironment env)
        Deprecated.
        Use recordDescribe(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the recordDescribe method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordGetDetails

        public static <T> T recordGetDetails​(String objectId,
                                             Class<T> outputClass)
        Invokes the recordGetDetails method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordGetDetails

        public static <T> T recordGetDetails​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass)
        Invokes the recordGetDetails method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordGetDetails

        public static <T> T recordGetDetails​(String objectId,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the recordGetDetails method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordGetDetails

        public static <T> T recordGetDetails​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the recordGetDetails method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordGetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordGetDetails​(String objectId)
        Deprecated.
        Use recordGetDetails(String, Class) instead and supply your own class to deserialize to.
        Invokes the recordGetDetails method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordGetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordGetDetails​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use recordGetDetails(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the recordGetDetails method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordGetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordGetDetails​(String objectId,
                                                                               DXEnvironment env)
        Deprecated.
        Use recordGetDetails(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the recordGetDetails method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordGetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordGetDetails​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                               DXEnvironment env)
        Deprecated.
        Use recordGetDetails(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the recordGetDetails method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordListProjects

        public static <T> T recordListProjects​(String objectId,
                                               Class<T> outputClass)
        Invokes the recordListProjects method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordListProjects

        public static <T> T recordListProjects​(String objectId,
                                               Object inputObject,
                                               Class<T> outputClass)
        Invokes the recordListProjects method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordListProjects

        public static <T> T recordListProjects​(String objectId,
                                               Class<T> outputClass,
                                               DXEnvironment env)
        Invokes the recordListProjects method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordListProjects

        public static <T> T recordListProjects​(String objectId,
                                               Object inputObject,
                                               Class<T> outputClass,
                                               DXEnvironment env)
        Invokes the recordListProjects method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordListProjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordListProjects​(String objectId)
        Deprecated.
        Use recordListProjects(String, Class) instead and supply your own class to deserialize to.
        Invokes the recordListProjects method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordListProjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordListProjects​(String objectId,
                                                                                 com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use recordListProjects(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the recordListProjects method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordListProjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordListProjects​(String objectId,
                                                                                 DXEnvironment env)
        Deprecated.
        Use recordListProjects(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the recordListProjects method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordListProjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordListProjects​(String objectId,
                                                                                 com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                 DXEnvironment env)
        Deprecated.
        Use recordListProjects(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the recordListProjects method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordRemoveTags

        public static <T> T recordRemoveTags​(String objectId,
                                             Class<T> outputClass)
        Invokes the recordRemoveTags method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordRemoveTags

        public static <T> T recordRemoveTags​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass)
        Invokes the recordRemoveTags method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordRemoveTags

        public static <T> T recordRemoveTags​(String objectId,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the recordRemoveTags method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordRemoveTags

        public static <T> T recordRemoveTags​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the recordRemoveTags method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordRemoveTags​(String objectId)
        Deprecated.
        Use recordRemoveTags(String, Class) instead and supply your own class to deserialize to.
        Invokes the recordRemoveTags method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordRemoveTags​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use recordRemoveTags(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the recordRemoveTags method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordRemoveTags​(String objectId,
                                                                               DXEnvironment env)
        Deprecated.
        Use recordRemoveTags(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the recordRemoveTags method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordRemoveTags​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                               DXEnvironment env)
        Deprecated.
        Use recordRemoveTags(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the recordRemoveTags method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordRemoveTypes

        public static <T> T recordRemoveTypes​(String objectId,
                                              Class<T> outputClass)
        Invokes the recordRemoveTypes method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordRemoveTypes

        public static <T> T recordRemoveTypes​(String objectId,
                                              Object inputObject,
                                              Class<T> outputClass)
        Invokes the recordRemoveTypes method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordRemoveTypes

        public static <T> T recordRemoveTypes​(String objectId,
                                              Class<T> outputClass,
                                              DXEnvironment env)
        Invokes the recordRemoveTypes method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordRemoveTypes

        public static <T> T recordRemoveTypes​(String objectId,
                                              Object inputObject,
                                              Class<T> outputClass,
                                              DXEnvironment env)
        Invokes the recordRemoveTypes method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordRemoveTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordRemoveTypes​(String objectId)
        Deprecated.
        Use recordRemoveTypes(String, Class) instead and supply your own class to deserialize to.
        Invokes the recordRemoveTypes method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordRemoveTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordRemoveTypes​(String objectId,
                                                                                com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use recordRemoveTypes(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the recordRemoveTypes method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordRemoveTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordRemoveTypes​(String objectId,
                                                                                DXEnvironment env)
        Deprecated.
        Use recordRemoveTypes(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the recordRemoveTypes method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordRemoveTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordRemoveTypes​(String objectId,
                                                                                com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                DXEnvironment env)
        Deprecated.
        Use recordRemoveTypes(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the recordRemoveTypes method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordRename

        public static <T> T recordRename​(String objectId,
                                         Class<T> outputClass)
        Invokes the recordRename method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordRename

        public static <T> T recordRename​(String objectId,
                                         Object inputObject,
                                         Class<T> outputClass)
        Invokes the recordRename method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordRename

        public static <T> T recordRename​(String objectId,
                                         Class<T> outputClass,
                                         DXEnvironment env)
        Invokes the recordRename method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordRename

        public static <T> T recordRename​(String objectId,
                                         Object inputObject,
                                         Class<T> outputClass,
                                         DXEnvironment env)
        Invokes the recordRename method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordRename

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordRename​(String objectId)
        Deprecated.
        Use recordRename(String, Class) instead and supply your own class to deserialize to.
        Invokes the recordRename method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordRename

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordRename​(String objectId,
                                                                           com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use recordRename(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the recordRename method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordRename

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordRename​(String objectId,
                                                                           DXEnvironment env)
        Deprecated.
        Use recordRename(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the recordRename method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordRename

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordRename​(String objectId,
                                                                           com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                           DXEnvironment env)
        Deprecated.
        Use recordRename(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the recordRename method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordSetDetails

        public static <T> T recordSetDetails​(String objectId,
                                             Class<T> outputClass)
        Invokes the recordSetDetails method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordSetDetails

        public static <T> T recordSetDetails​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass)
        Invokes the recordSetDetails method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordSetDetails

        public static <T> T recordSetDetails​(String objectId,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the recordSetDetails method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordSetDetails

        public static <T> T recordSetDetails​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the recordSetDetails method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordSetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordSetDetails​(String objectId)
        Deprecated.
        Use recordSetDetails(String, Class) instead and supply your own class to deserialize to.
        Invokes the recordSetDetails method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordSetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordSetDetails​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use recordSetDetails(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the recordSetDetails method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordSetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordSetDetails​(String objectId,
                                                                               DXEnvironment env)
        Deprecated.
        Use recordSetDetails(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the recordSetDetails method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordSetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordSetDetails​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                               DXEnvironment env)
        Deprecated.
        Use recordSetDetails(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the recordSetDetails method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordSetProperties

        public static <T> T recordSetProperties​(String objectId,
                                                Class<T> outputClass)
        Invokes the recordSetProperties method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordSetProperties

        public static <T> T recordSetProperties​(String objectId,
                                                Object inputObject,
                                                Class<T> outputClass)
        Invokes the recordSetProperties method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordSetProperties

        public static <T> T recordSetProperties​(String objectId,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the recordSetProperties method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordSetProperties

        public static <T> T recordSetProperties​(String objectId,
                                                Object inputObject,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the recordSetProperties method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordSetProperties​(String objectId)
        Deprecated.
        Use recordSetProperties(String, Class) instead and supply your own class to deserialize to.
        Invokes the recordSetProperties method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordSetProperties​(String objectId,
                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use recordSetProperties(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the recordSetProperties method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordSetProperties​(String objectId,
                                                                                  DXEnvironment env)
        Deprecated.
        Use recordSetProperties(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the recordSetProperties method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordSetProperties​(String objectId,
                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                  DXEnvironment env)
        Deprecated.
        Use recordSetProperties(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the recordSetProperties method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordSetVisibility

        public static <T> T recordSetVisibility​(String objectId,
                                                Class<T> outputClass)
        Invokes the recordSetVisibility method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordSetVisibility

        public static <T> T recordSetVisibility​(String objectId,
                                                Object inputObject,
                                                Class<T> outputClass)
        Invokes the recordSetVisibility method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordSetVisibility

        public static <T> T recordSetVisibility​(String objectId,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the recordSetVisibility method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordSetVisibility

        public static <T> T recordSetVisibility​(String objectId,
                                                Object inputObject,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the recordSetVisibility method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordSetVisibility

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordSetVisibility​(String objectId)
        Deprecated.
        Use recordSetVisibility(String, Class) instead and supply your own class to deserialize to.
        Invokes the recordSetVisibility method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordSetVisibility

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordSetVisibility​(String objectId,
                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use recordSetVisibility(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the recordSetVisibility method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordSetVisibility

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordSetVisibility​(String objectId,
                                                                                  DXEnvironment env)
        Deprecated.
        Use recordSetVisibility(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the recordSetVisibility method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordSetVisibility

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordSetVisibility​(String objectId,
                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                  DXEnvironment env)
        Deprecated.
        Use recordSetVisibility(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the recordSetVisibility method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordNew

        public static <T> T recordNew​(Class<T> outputClass)
        Invokes the recordNew method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordNew

        public static <T> T recordNew​(Class<T> outputClass,
                                      DXEnvironment env)
        Invokes the recordNew method with an empty input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordNew

        public static <T> T recordNew​(Object inputObject,
                                      Class<T> outputClass)
        Invokes the recordNew method with the specified input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordNew

        public static <T> T recordNew​(Object inputObject,
                                      Class<T> outputClass,
                                      DXEnvironment env)
        Invokes the recordNew method with the specified input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordNew()
        Deprecated.
        Use recordNew(Class) instead and supply your own class to deserialize to.
        Invokes the recordNew method.

        For more information about this method, see the API specification.

        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordNew​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use recordNew(Object, Class) instead and supply your own class to deserialize to.
        Invokes the recordNew method with the specified input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordNew​(DXEnvironment env)
        Deprecated.
        Use recordNew(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the recordNew method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • recordNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode recordNew​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                        DXEnvironment env)
        Deprecated.
        Use recordNew(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the recordNew method with the specified environment and input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemDescribeDataObjects

        public static <T> T systemDescribeDataObjects​(Class<T> outputClass)
        Invokes the systemDescribeDataObjects method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemDescribeDataObjects

        public static <T> T systemDescribeDataObjects​(Class<T> outputClass,
                                                      DXEnvironment env)
        Invokes the systemDescribeDataObjects method with an empty input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemDescribeDataObjects

        public static <T> T systemDescribeDataObjects​(Object inputObject,
                                                      Class<T> outputClass)
        Invokes the systemDescribeDataObjects method with the specified input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemDescribeDataObjects

        public static <T> T systemDescribeDataObjects​(Object inputObject,
                                                      Class<T> outputClass,
                                                      DXEnvironment env)
        Invokes the systemDescribeDataObjects method with the specified input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemDescribeDataObjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemDescribeDataObjects()
        Deprecated.
        Use systemDescribeDataObjects(Class) instead and supply your own class to deserialize to.
        Invokes the systemDescribeDataObjects method.

        For more information about this method, see the API specification.

        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemDescribeDataObjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemDescribeDataObjects​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use systemDescribeDataObjects(Object, Class) instead and supply your own class to deserialize to.
        Invokes the systemDescribeDataObjects method with the specified input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemDescribeDataObjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemDescribeDataObjects​(DXEnvironment env)
        Deprecated.
        Use systemDescribeDataObjects(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemDescribeDataObjects method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemDescribeDataObjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemDescribeDataObjects​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                        DXEnvironment env)
        Deprecated.
        Use systemDescribeDataObjects(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemDescribeDataObjects method with the specified environment and input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemDescribeExecutions

        public static <T> T systemDescribeExecutions​(Class<T> outputClass)
        Invokes the systemDescribeExecutions method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemDescribeExecutions

        public static <T> T systemDescribeExecutions​(Class<T> outputClass,
                                                     DXEnvironment env)
        Invokes the systemDescribeExecutions method with an empty input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemDescribeExecutions

        public static <T> T systemDescribeExecutions​(Object inputObject,
                                                     Class<T> outputClass)
        Invokes the systemDescribeExecutions method with the specified input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemDescribeExecutions

        public static <T> T systemDescribeExecutions​(Object inputObject,
                                                     Class<T> outputClass,
                                                     DXEnvironment env)
        Invokes the systemDescribeExecutions method with the specified input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemDescribeExecutions

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemDescribeExecutions()
        Deprecated.
        Use systemDescribeExecutions(Class) instead and supply your own class to deserialize to.
        Invokes the systemDescribeExecutions method.

        For more information about this method, see the API specification.

        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemDescribeExecutions

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemDescribeExecutions​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use systemDescribeExecutions(Object, Class) instead and supply your own class to deserialize to.
        Invokes the systemDescribeExecutions method with the specified input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemDescribeExecutions

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemDescribeExecutions​(DXEnvironment env)
        Deprecated.
        Use systemDescribeExecutions(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemDescribeExecutions method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemDescribeExecutions

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemDescribeExecutions​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                       DXEnvironment env)
        Deprecated.
        Use systemDescribeExecutions(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemDescribeExecutions method with the specified environment and input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemDescribeProjects

        public static <T> T systemDescribeProjects​(Class<T> outputClass)
        Invokes the systemDescribeProjects method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemDescribeProjects

        public static <T> T systemDescribeProjects​(Class<T> outputClass,
                                                   DXEnvironment env)
        Invokes the systemDescribeProjects method with an empty input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemDescribeProjects

        public static <T> T systemDescribeProjects​(Object inputObject,
                                                   Class<T> outputClass)
        Invokes the systemDescribeProjects method with the specified input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemDescribeProjects

        public static <T> T systemDescribeProjects​(Object inputObject,
                                                   Class<T> outputClass,
                                                   DXEnvironment env)
        Invokes the systemDescribeProjects method with the specified input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemDescribeProjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemDescribeProjects()
        Deprecated.
        Use systemDescribeProjects(Class) instead and supply your own class to deserialize to.
        Invokes the systemDescribeProjects method.

        For more information about this method, see the API specification.

        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemDescribeProjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemDescribeProjects​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use systemDescribeProjects(Object, Class) instead and supply your own class to deserialize to.
        Invokes the systemDescribeProjects method with the specified input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemDescribeProjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemDescribeProjects​(DXEnvironment env)
        Deprecated.
        Use systemDescribeProjects(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemDescribeProjects method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemDescribeProjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemDescribeProjects​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                     DXEnvironment env)
        Deprecated.
        Use systemDescribeProjects(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemDescribeProjects method with the specified environment and input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindAffiliates

        public static <T> T systemFindAffiliates​(Class<T> outputClass)
        Invokes the systemFindAffiliates method with an empty input, deserializing to an object of the specified class.
        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindAffiliates

        public static <T> T systemFindAffiliates​(Class<T> outputClass,
                                                 DXEnvironment env)
        Invokes the systemFindAffiliates method with an empty input using the specified environment, deserializing to an object of the specified class.
        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindAffiliates

        public static <T> T systemFindAffiliates​(Object inputObject,
                                                 Class<T> outputClass)
        Invokes the systemFindAffiliates method with the specified input, deserializing to an object of the specified class.
        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindAffiliates

        public static <T> T systemFindAffiliates​(Object inputObject,
                                                 Class<T> outputClass,
                                                 DXEnvironment env)
        Invokes the systemFindAffiliates method with the specified input using the specified environment, deserializing to an object of the specified class.
        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindAffiliates

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindAffiliates()
        Deprecated.
        Use systemFindAffiliates(Class) instead and supply your own class to deserialize to.
        Invokes the systemFindAffiliates method.
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindAffiliates

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindAffiliates​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use systemFindAffiliates(Object, Class) instead and supply your own class to deserialize to.
        Invokes the systemFindAffiliates method with the specified input parameters.
        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindAffiliates

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindAffiliates​(DXEnvironment env)
        Deprecated.
        Use systemFindAffiliates(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemFindAffiliates method with the specified environment.
        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindAffiliates

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindAffiliates​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                   DXEnvironment env)
        Deprecated.
        Use systemFindAffiliates(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemFindAffiliates method with the specified environment and input parameters.
        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindApps

        public static <T> T systemFindApps​(Class<T> outputClass)
        Invokes the systemFindApps method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindApps

        public static <T> T systemFindApps​(Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the systemFindApps method with an empty input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindApps

        public static <T> T systemFindApps​(Object inputObject,
                                           Class<T> outputClass)
        Invokes the systemFindApps method with the specified input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindApps

        public static <T> T systemFindApps​(Object inputObject,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the systemFindApps method with the specified input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindApps

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindApps()
        Deprecated.
        Use systemFindApps(Class) instead and supply your own class to deserialize to.
        Invokes the systemFindApps method.

        For more information about this method, see the API specification.

        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindApps

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindApps​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use systemFindApps(Object, Class) instead and supply your own class to deserialize to.
        Invokes the systemFindApps method with the specified input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindApps

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindApps​(DXEnvironment env)
        Deprecated.
        Use systemFindApps(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemFindApps method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindApps

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindApps​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                             DXEnvironment env)
        Deprecated.
        Use systemFindApps(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemFindApps method with the specified environment and input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindDataObjects

        public static <T> T systemFindDataObjects​(Class<T> outputClass)
        Invokes the systemFindDataObjects method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindDataObjects

        public static <T> T systemFindDataObjects​(Class<T> outputClass,
                                                  DXEnvironment env)
        Invokes the systemFindDataObjects method with an empty input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindDataObjects

        public static <T> T systemFindDataObjects​(Object inputObject,
                                                  Class<T> outputClass)
        Invokes the systemFindDataObjects method with the specified input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindDataObjects

        public static <T> T systemFindDataObjects​(Object inputObject,
                                                  Class<T> outputClass,
                                                  DXEnvironment env)
        Invokes the systemFindDataObjects method with the specified input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindDataObjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindDataObjects()
        Deprecated.
        Use systemFindDataObjects(Class) instead and supply your own class to deserialize to.
        Invokes the systemFindDataObjects method.

        For more information about this method, see the API specification.

        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindDataObjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindDataObjects​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use systemFindDataObjects(Object, Class) instead and supply your own class to deserialize to.
        Invokes the systemFindDataObjects method with the specified input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindDataObjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindDataObjects​(DXEnvironment env)
        Deprecated.
        Use systemFindDataObjects(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemFindDataObjects method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindDataObjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindDataObjects​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                    DXEnvironment env)
        Deprecated.
        Use systemFindDataObjects(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemFindDataObjects method with the specified environment and input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindGlobalWorkflows

        public static <T> T systemFindGlobalWorkflows​(Class<T> outputClass)
        Invokes the systemFindGlobalWorkflows method with an empty input, deserializing to an object of the specified class.
        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindGlobalWorkflows

        public static <T> T systemFindGlobalWorkflows​(Class<T> outputClass,
                                                      DXEnvironment env)
        Invokes the systemFindGlobalWorkflows method with an empty input using the specified environment, deserializing to an object of the specified class.
        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindGlobalWorkflows

        public static <T> T systemFindGlobalWorkflows​(Object inputObject,
                                                      Class<T> outputClass)
        Invokes the systemFindGlobalWorkflows method with the specified input, deserializing to an object of the specified class.
        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindGlobalWorkflows

        public static <T> T systemFindGlobalWorkflows​(Object inputObject,
                                                      Class<T> outputClass,
                                                      DXEnvironment env)
        Invokes the systemFindGlobalWorkflows method with the specified input using the specified environment, deserializing to an object of the specified class.
        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindGlobalWorkflows

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindGlobalWorkflows()
        Deprecated.
        Use systemFindGlobalWorkflows(Class) instead and supply your own class to deserialize to.
        Invokes the systemFindGlobalWorkflows method.
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindGlobalWorkflows

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindGlobalWorkflows​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use systemFindGlobalWorkflows(Object, Class) instead and supply your own class to deserialize to.
        Invokes the systemFindGlobalWorkflows method with the specified input parameters.
        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindGlobalWorkflows

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindGlobalWorkflows​(DXEnvironment env)
        Deprecated.
        Use systemFindGlobalWorkflows(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemFindGlobalWorkflows method with the specified environment.
        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindGlobalWorkflows

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindGlobalWorkflows​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                        DXEnvironment env)
        Deprecated.
        Use systemFindGlobalWorkflows(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemFindGlobalWorkflows method with the specified environment and input parameters.
        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemResolveDataObjects

        public static <T> T systemResolveDataObjects​(Class<T> outputClass)
        Invokes the systemResolveDataObjects method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemResolveDataObjects

        public static <T> T systemResolveDataObjects​(Class<T> outputClass,
                                                     DXEnvironment env)
        Invokes the systemResolveDataObjects method with an empty input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemResolveDataObjects

        public static <T> T systemResolveDataObjects​(Object inputObject,
                                                     Class<T> outputClass)
        Invokes the systemResolveDataObjects method with the specified input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemResolveDataObjects

        public static <T> T systemResolveDataObjects​(Object inputObject,
                                                     Class<T> outputClass,
                                                     DXEnvironment env)
        Invokes the systemResolveDataObjects method with the specified input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemResolveDataObjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemResolveDataObjects()
        Deprecated.
        Use systemResolveDataObjects(Class) instead and supply your own class to deserialize to.
        Invokes the systemResolveDataObjects method.

        For more information about this method, see the API specification.

        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemResolveDataObjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemResolveDataObjects​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use systemResolveDataObjects(Object, Class) instead and supply your own class to deserialize to.
        Invokes the systemResolveDataObjects method with the specified input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemResolveDataObjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemResolveDataObjects​(DXEnvironment env)
        Deprecated.
        Use systemResolveDataObjects(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemResolveDataObjects method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemResolveDataObjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemResolveDataObjects​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                       DXEnvironment env)
        Deprecated.
        Use systemResolveDataObjects(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemResolveDataObjects method with the specified environment and input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindExecutions

        public static <T> T systemFindExecutions​(Class<T> outputClass)
        Invokes the systemFindExecutions method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindExecutions

        public static <T> T systemFindExecutions​(Class<T> outputClass,
                                                 DXEnvironment env)
        Invokes the systemFindExecutions method with an empty input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindExecutions

        public static <T> T systemFindExecutions​(Object inputObject,
                                                 Class<T> outputClass)
        Invokes the systemFindExecutions method with the specified input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindExecutions

        public static <T> T systemFindExecutions​(Object inputObject,
                                                 Class<T> outputClass,
                                                 DXEnvironment env)
        Invokes the systemFindExecutions method with the specified input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindExecutions

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindExecutions()
        Deprecated.
        Use systemFindExecutions(Class) instead and supply your own class to deserialize to.
        Invokes the systemFindExecutions method.

        For more information about this method, see the API specification.

        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindExecutions

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindExecutions​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use systemFindExecutions(Object, Class) instead and supply your own class to deserialize to.
        Invokes the systemFindExecutions method with the specified input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindExecutions

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindExecutions​(DXEnvironment env)
        Deprecated.
        Use systemFindExecutions(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemFindExecutions method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindExecutions

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindExecutions​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                   DXEnvironment env)
        Deprecated.
        Use systemFindExecutions(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemFindExecutions method with the specified environment and input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindAnalyses

        public static <T> T systemFindAnalyses​(Class<T> outputClass)
        Invokes the systemFindAnalyses method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindAnalyses

        public static <T> T systemFindAnalyses​(Class<T> outputClass,
                                               DXEnvironment env)
        Invokes the systemFindAnalyses method with an empty input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindAnalyses

        public static <T> T systemFindAnalyses​(Object inputObject,
                                               Class<T> outputClass)
        Invokes the systemFindAnalyses method with the specified input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindAnalyses

        public static <T> T systemFindAnalyses​(Object inputObject,
                                               Class<T> outputClass,
                                               DXEnvironment env)
        Invokes the systemFindAnalyses method with the specified input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindAnalyses

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindAnalyses()
        Deprecated.
        Use systemFindAnalyses(Class) instead and supply your own class to deserialize to.
        Invokes the systemFindAnalyses method.

        For more information about this method, see the API specification.

        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindAnalyses

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindAnalyses​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use systemFindAnalyses(Object, Class) instead and supply your own class to deserialize to.
        Invokes the systemFindAnalyses method with the specified input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindAnalyses

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindAnalyses​(DXEnvironment env)
        Deprecated.
        Use systemFindAnalyses(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemFindAnalyses method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindAnalyses

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindAnalyses​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                 DXEnvironment env)
        Deprecated.
        Use systemFindAnalyses(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemFindAnalyses method with the specified environment and input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindDatabases

        public static <T> T systemFindDatabases​(Class<T> outputClass)
        Invokes the systemFindDatabases method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindDatabases

        public static <T> T systemFindDatabases​(Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the systemFindDatabases method with an empty input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindDatabases

        public static <T> T systemFindDatabases​(Object inputObject,
                                                Class<T> outputClass)
        Invokes the systemFindDatabases method with the specified input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindDatabases

        public static <T> T systemFindDatabases​(Object inputObject,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the systemFindDatabases method with the specified input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindDatabases

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindDatabases()
        Deprecated.
        Use systemFindDatabases(Class) instead and supply your own class to deserialize to.
        Invokes the systemFindDatabases method.

        For more information about this method, see the API specification.

        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindDatabases

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindDatabases​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use systemFindDatabases(Object, Class) instead and supply your own class to deserialize to.
        Invokes the systemFindDatabases method with the specified input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindDatabases

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindDatabases​(DXEnvironment env)
        Deprecated.
        Use systemFindDatabases(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemFindDatabases method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindDatabases

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindDatabases​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                  DXEnvironment env)
        Deprecated.
        Use systemFindDatabases(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemFindDatabases method with the specified environment and input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindJobs

        public static <T> T systemFindJobs​(Class<T> outputClass)
        Invokes the systemFindJobs method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindJobs

        public static <T> T systemFindJobs​(Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the systemFindJobs method with an empty input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindJobs

        public static <T> T systemFindJobs​(Object inputObject,
                                           Class<T> outputClass)
        Invokes the systemFindJobs method with the specified input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindJobs

        public static <T> T systemFindJobs​(Object inputObject,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the systemFindJobs method with the specified input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindJobs

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindJobs()
        Deprecated.
        Use systemFindJobs(Class) instead and supply your own class to deserialize to.
        Invokes the systemFindJobs method.

        For more information about this method, see the API specification.

        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindJobs

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindJobs​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use systemFindJobs(Object, Class) instead and supply your own class to deserialize to.
        Invokes the systemFindJobs method with the specified input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindJobs

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindJobs​(DXEnvironment env)
        Deprecated.
        Use systemFindJobs(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemFindJobs method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindJobs

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindJobs​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                             DXEnvironment env)
        Deprecated.
        Use systemFindJobs(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemFindJobs method with the specified environment and input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindProjects

        public static <T> T systemFindProjects​(Class<T> outputClass)
        Invokes the systemFindProjects method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindProjects

        public static <T> T systemFindProjects​(Class<T> outputClass,
                                               DXEnvironment env)
        Invokes the systemFindProjects method with an empty input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindProjects

        public static <T> T systemFindProjects​(Object inputObject,
                                               Class<T> outputClass)
        Invokes the systemFindProjects method with the specified input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindProjects

        public static <T> T systemFindProjects​(Object inputObject,
                                               Class<T> outputClass,
                                               DXEnvironment env)
        Invokes the systemFindProjects method with the specified input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindProjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindProjects()
        Deprecated.
        Use systemFindProjects(Class) instead and supply your own class to deserialize to.
        Invokes the systemFindProjects method.

        For more information about this method, see the API specification.

        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindProjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindProjects​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use systemFindProjects(Object, Class) instead and supply your own class to deserialize to.
        Invokes the systemFindProjects method with the specified input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindProjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindProjects​(DXEnvironment env)
        Deprecated.
        Use systemFindProjects(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemFindProjects method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindProjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindProjects​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                 DXEnvironment env)
        Deprecated.
        Use systemFindProjects(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemFindProjects method with the specified environment and input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindUsers

        public static <T> T systemFindUsers​(Class<T> outputClass)
        Invokes the systemFindUsers method with an empty input, deserializing to an object of the specified class.
        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindUsers

        public static <T> T systemFindUsers​(Class<T> outputClass,
                                            DXEnvironment env)
        Invokes the systemFindUsers method with an empty input using the specified environment, deserializing to an object of the specified class.
        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindUsers

        public static <T> T systemFindUsers​(Object inputObject,
                                            Class<T> outputClass)
        Invokes the systemFindUsers method with the specified input, deserializing to an object of the specified class.
        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindUsers

        public static <T> T systemFindUsers​(Object inputObject,
                                            Class<T> outputClass,
                                            DXEnvironment env)
        Invokes the systemFindUsers method with the specified input using the specified environment, deserializing to an object of the specified class.
        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindUsers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindUsers()
        Deprecated.
        Use systemFindUsers(Class) instead and supply your own class to deserialize to.
        Invokes the systemFindUsers method.
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindUsers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindUsers​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use systemFindUsers(Object, Class) instead and supply your own class to deserialize to.
        Invokes the systemFindUsers method with the specified input parameters.
        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindUsers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindUsers​(DXEnvironment env)
        Deprecated.
        Use systemFindUsers(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemFindUsers method with the specified environment.
        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindUsers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindUsers​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                              DXEnvironment env)
        Deprecated.
        Use systemFindUsers(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemFindUsers method with the specified environment and input parameters.
        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindProjectMembers

        public static <T> T systemFindProjectMembers​(Class<T> outputClass)
        Invokes the systemFindProjectMembers method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindProjectMembers

        public static <T> T systemFindProjectMembers​(Class<T> outputClass,
                                                     DXEnvironment env)
        Invokes the systemFindProjectMembers method with an empty input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindProjectMembers

        public static <T> T systemFindProjectMembers​(Object inputObject,
                                                     Class<T> outputClass)
        Invokes the systemFindProjectMembers method with the specified input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindProjectMembers

        public static <T> T systemFindProjectMembers​(Object inputObject,
                                                     Class<T> outputClass,
                                                     DXEnvironment env)
        Invokes the systemFindProjectMembers method with the specified input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindProjectMembers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindProjectMembers()
        Deprecated.
        Use systemFindProjectMembers(Class) instead and supply your own class to deserialize to.
        Invokes the systemFindProjectMembers method.

        For more information about this method, see the API specification.

        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindProjectMembers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindProjectMembers​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use systemFindProjectMembers(Object, Class) instead and supply your own class to deserialize to.
        Invokes the systemFindProjectMembers method with the specified input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindProjectMembers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindProjectMembers​(DXEnvironment env)
        Deprecated.
        Use systemFindProjectMembers(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemFindProjectMembers method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindProjectMembers

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindProjectMembers​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                       DXEnvironment env)
        Deprecated.
        Use systemFindProjectMembers(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemFindProjectMembers method with the specified environment and input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindOrgs

        public static <T> T systemFindOrgs​(Class<T> outputClass)
        Invokes the systemFindOrgs method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindOrgs

        public static <T> T systemFindOrgs​(Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the systemFindOrgs method with an empty input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindOrgs

        public static <T> T systemFindOrgs​(Object inputObject,
                                           Class<T> outputClass)
        Invokes the systemFindOrgs method with the specified input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindOrgs

        public static <T> T systemFindOrgs​(Object inputObject,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the systemFindOrgs method with the specified input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindOrgs

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindOrgs()
        Deprecated.
        Use systemFindOrgs(Class) instead and supply your own class to deserialize to.
        Invokes the systemFindOrgs method.

        For more information about this method, see the API specification.

        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindOrgs

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindOrgs​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use systemFindOrgs(Object, Class) instead and supply your own class to deserialize to.
        Invokes the systemFindOrgs method with the specified input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindOrgs

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindOrgs​(DXEnvironment env)
        Deprecated.
        Use systemFindOrgs(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemFindOrgs method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemFindOrgs

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemFindOrgs​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                             DXEnvironment env)
        Deprecated.
        Use systemFindOrgs(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemFindOrgs method with the specified environment and input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemGenerateBatchInputs

        public static <T> T systemGenerateBatchInputs​(Class<T> outputClass)
        Invokes the systemGenerateBatchInputs method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemGenerateBatchInputs

        public static <T> T systemGenerateBatchInputs​(Class<T> outputClass,
                                                      DXEnvironment env)
        Invokes the systemGenerateBatchInputs method with an empty input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemGenerateBatchInputs

        public static <T> T systemGenerateBatchInputs​(Object inputObject,
                                                      Class<T> outputClass)
        Invokes the systemGenerateBatchInputs method with the specified input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemGenerateBatchInputs

        public static <T> T systemGenerateBatchInputs​(Object inputObject,
                                                      Class<T> outputClass,
                                                      DXEnvironment env)
        Invokes the systemGenerateBatchInputs method with the specified input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemGenerateBatchInputs

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemGenerateBatchInputs()
        Deprecated.
        Use systemGenerateBatchInputs(Class) instead and supply your own class to deserialize to.
        Invokes the systemGenerateBatchInputs method.

        For more information about this method, see the API specification.

        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemGenerateBatchInputs

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemGenerateBatchInputs​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use systemGenerateBatchInputs(Object, Class) instead and supply your own class to deserialize to.
        Invokes the systemGenerateBatchInputs method with the specified input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemGenerateBatchInputs

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemGenerateBatchInputs​(DXEnvironment env)
        Deprecated.
        Use systemGenerateBatchInputs(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemGenerateBatchInputs method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemGenerateBatchInputs

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemGenerateBatchInputs​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                        DXEnvironment env)
        Deprecated.
        Use systemGenerateBatchInputs(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemGenerateBatchInputs method with the specified environment and input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemGlobalSearch

        public static <T> T systemGlobalSearch​(Class<T> outputClass)
        Invokes the systemGlobalSearch method with an empty input, deserializing to an object of the specified class.
        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemGlobalSearch

        public static <T> T systemGlobalSearch​(Class<T> outputClass,
                                               DXEnvironment env)
        Invokes the systemGlobalSearch method with an empty input using the specified environment, deserializing to an object of the specified class.
        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemGlobalSearch

        public static <T> T systemGlobalSearch​(Object inputObject,
                                               Class<T> outputClass)
        Invokes the systemGlobalSearch method with the specified input, deserializing to an object of the specified class.
        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemGlobalSearch

        public static <T> T systemGlobalSearch​(Object inputObject,
                                               Class<T> outputClass,
                                               DXEnvironment env)
        Invokes the systemGlobalSearch method with the specified input using the specified environment, deserializing to an object of the specified class.
        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemGlobalSearch

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemGlobalSearch()
        Deprecated.
        Use systemGlobalSearch(Class) instead and supply your own class to deserialize to.
        Invokes the systemGlobalSearch method.
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemGlobalSearch

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemGlobalSearch​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use systemGlobalSearch(Object, Class) instead and supply your own class to deserialize to.
        Invokes the systemGlobalSearch method with the specified input parameters.
        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemGlobalSearch

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemGlobalSearch​(DXEnvironment env)
        Deprecated.
        Use systemGlobalSearch(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemGlobalSearch method with the specified environment.
        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemGlobalSearch

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemGlobalSearch​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                 DXEnvironment env)
        Deprecated.
        Use systemGlobalSearch(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemGlobalSearch method with the specified environment and input parameters.
        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemGreet

        public static <T> T systemGreet​(Class<T> outputClass)
        Invokes the systemGreet method with an empty input, deserializing to an object of the specified class.
        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemGreet

        public static <T> T systemGreet​(Class<T> outputClass,
                                        DXEnvironment env)
        Invokes the systemGreet method with an empty input using the specified environment, deserializing to an object of the specified class.
        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemGreet

        public static <T> T systemGreet​(Object inputObject,
                                        Class<T> outputClass)
        Invokes the systemGreet method with the specified input, deserializing to an object of the specified class.
        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemGreet

        public static <T> T systemGreet​(Object inputObject,
                                        Class<T> outputClass,
                                        DXEnvironment env)
        Invokes the systemGreet method with the specified input using the specified environment, deserializing to an object of the specified class.
        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemGreet

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemGreet()
        Deprecated.
        Use systemGreet(Class) instead and supply your own class to deserialize to.
        Invokes the systemGreet method.
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemGreet

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemGreet​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use systemGreet(Object, Class) instead and supply your own class to deserialize to.
        Invokes the systemGreet method with the specified input parameters.
        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemGreet

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemGreet​(DXEnvironment env)
        Deprecated.
        Use systemGreet(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemGreet method with the specified environment.
        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemGreet

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemGreet​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                          DXEnvironment env)
        Deprecated.
        Use systemGreet(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemGreet method with the specified environment and input parameters.
        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemHeaders

        public static <T> T systemHeaders​(Class<T> outputClass)
        Invokes the systemHeaders method with an empty input, deserializing to an object of the specified class.
        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemHeaders

        public static <T> T systemHeaders​(Class<T> outputClass,
                                          DXEnvironment env)
        Invokes the systemHeaders method with an empty input using the specified environment, deserializing to an object of the specified class.
        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemHeaders

        public static <T> T systemHeaders​(Object inputObject,
                                          Class<T> outputClass)
        Invokes the systemHeaders method with the specified input, deserializing to an object of the specified class.
        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemHeaders

        public static <T> T systemHeaders​(Object inputObject,
                                          Class<T> outputClass,
                                          DXEnvironment env)
        Invokes the systemHeaders method with the specified input using the specified environment, deserializing to an object of the specified class.
        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemHeaders

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemHeaders()
        Deprecated.
        Use systemHeaders(Class) instead and supply your own class to deserialize to.
        Invokes the systemHeaders method.
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemHeaders

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemHeaders​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use systemHeaders(Object, Class) instead and supply your own class to deserialize to.
        Invokes the systemHeaders method with the specified input parameters.
        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemHeaders

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemHeaders​(DXEnvironment env)
        Deprecated.
        Use systemHeaders(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemHeaders method with the specified environment.
        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemHeaders

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemHeaders​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                            DXEnvironment env)
        Deprecated.
        Use systemHeaders(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemHeaders method with the specified environment and input parameters.
        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemShortenURL

        public static <T> T systemShortenURL​(Class<T> outputClass)
        Invokes the systemShortenURL method with an empty input, deserializing to an object of the specified class.
        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemShortenURL

        public static <T> T systemShortenURL​(Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the systemShortenURL method with an empty input using the specified environment, deserializing to an object of the specified class.
        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemShortenURL

        public static <T> T systemShortenURL​(Object inputObject,
                                             Class<T> outputClass)
        Invokes the systemShortenURL method with the specified input, deserializing to an object of the specified class.
        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemShortenURL

        public static <T> T systemShortenURL​(Object inputObject,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the systemShortenURL method with the specified input using the specified environment, deserializing to an object of the specified class.
        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemShortenURL

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemShortenURL()
        Deprecated.
        Use systemShortenURL(Class) instead and supply your own class to deserialize to.
        Invokes the systemShortenURL method.
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemShortenURL

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemShortenURL​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use systemShortenURL(Object, Class) instead and supply your own class to deserialize to.
        Invokes the systemShortenURL method with the specified input parameters.
        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemShortenURL

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemShortenURL​(DXEnvironment env)
        Deprecated.
        Use systemShortenURL(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemShortenURL method with the specified environment.
        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemShortenURL

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemShortenURL​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                               DXEnvironment env)
        Deprecated.
        Use systemShortenURL(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemShortenURL method with the specified environment and input parameters.
        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemWhoami

        public static <T> T systemWhoami​(Class<T> outputClass)
        Invokes the systemWhoami method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemWhoami

        public static <T> T systemWhoami​(Class<T> outputClass,
                                         DXEnvironment env)
        Invokes the systemWhoami method with an empty input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemWhoami

        public static <T> T systemWhoami​(Object inputObject,
                                         Class<T> outputClass)
        Invokes the systemWhoami method with the specified input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemWhoami

        public static <T> T systemWhoami​(Object inputObject,
                                         Class<T> outputClass,
                                         DXEnvironment env)
        Invokes the systemWhoami method with the specified input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemWhoami

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemWhoami()
        Deprecated.
        Use systemWhoami(Class) instead and supply your own class to deserialize to.
        Invokes the systemWhoami method.

        For more information about this method, see the API specification.

        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemWhoami

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemWhoami​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use systemWhoami(Object, Class) instead and supply your own class to deserialize to.
        Invokes the systemWhoami method with the specified input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemWhoami

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemWhoami​(DXEnvironment env)
        Deprecated.
        Use systemWhoami(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemWhoami method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • systemWhoami

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode systemWhoami​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                           DXEnvironment env)
        Deprecated.
        Use systemWhoami(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the systemWhoami method with the specified environment and input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • userDescribe

        public static <T> T userDescribe​(String objectId,
                                         Class<T> outputClass)
        Invokes the userDescribe method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • userDescribe

        public static <T> T userDescribe​(String objectId,
                                         Object inputObject,
                                         Class<T> outputClass)
        Invokes the userDescribe method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • userDescribe

        public static <T> T userDescribe​(String objectId,
                                         Class<T> outputClass,
                                         DXEnvironment env)
        Invokes the userDescribe method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • userDescribe

        public static <T> T userDescribe​(String objectId,
                                         Object inputObject,
                                         Class<T> outputClass,
                                         DXEnvironment env)
        Invokes the userDescribe method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • userDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode userDescribe​(String objectId)
        Deprecated.
        Use userDescribe(String, Class) instead and supply your own class to deserialize to.
        Invokes the userDescribe method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • userDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode userDescribe​(String objectId,
                                                                           com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use userDescribe(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the userDescribe method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • userDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode userDescribe​(String objectId,
                                                                           DXEnvironment env)
        Deprecated.
        Use userDescribe(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the userDescribe method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • userDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode userDescribe​(String objectId,
                                                                           com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                           DXEnvironment env)
        Deprecated.
        Use userDescribe(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the userDescribe method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • userUpdate

        public static <T> T userUpdate​(String objectId,
                                       Class<T> outputClass)
        Invokes the userUpdate method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • userUpdate

        public static <T> T userUpdate​(String objectId,
                                       Object inputObject,
                                       Class<T> outputClass)
        Invokes the userUpdate method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • userUpdate

        public static <T> T userUpdate​(String objectId,
                                       Class<T> outputClass,
                                       DXEnvironment env)
        Invokes the userUpdate method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • userUpdate

        public static <T> T userUpdate​(String objectId,
                                       Object inputObject,
                                       Class<T> outputClass,
                                       DXEnvironment env)
        Invokes the userUpdate method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • userUpdate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode userUpdate​(String objectId)
        Deprecated.
        Use userUpdate(String, Class) instead and supply your own class to deserialize to.
        Invokes the userUpdate method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • userUpdate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode userUpdate​(String objectId,
                                                                         com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use userUpdate(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the userUpdate method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • userUpdate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode userUpdate​(String objectId,
                                                                         DXEnvironment env)
        Deprecated.
        Use userUpdate(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the userUpdate method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • userUpdate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode userUpdate​(String objectId,
                                                                         com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                         DXEnvironment env)
        Deprecated.
        Use userUpdate(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the userUpdate method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowAddStage

        public static <T> T workflowAddStage​(String objectId,
                                             Class<T> outputClass)
        Invokes the workflowAddStage method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowAddStage

        public static <T> T workflowAddStage​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass)
        Invokes the workflowAddStage method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowAddStage

        public static <T> T workflowAddStage​(String objectId,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the workflowAddStage method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowAddStage

        public static <T> T workflowAddStage​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the workflowAddStage method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowAddStage

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowAddStage​(String objectId)
        Deprecated.
        Use workflowAddStage(String, Class) instead and supply your own class to deserialize to.
        Invokes the workflowAddStage method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowAddStage

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowAddStage​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use workflowAddStage(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the workflowAddStage method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowAddStage

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowAddStage​(String objectId,
                                                                               DXEnvironment env)
        Deprecated.
        Use workflowAddStage(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowAddStage method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowAddStage

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowAddStage​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                               DXEnvironment env)
        Deprecated.
        Use workflowAddStage(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowAddStage method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowAddTags

        public static <T> T workflowAddTags​(String objectId,
                                            Class<T> outputClass)
        Invokes the workflowAddTags method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowAddTags

        public static <T> T workflowAddTags​(String objectId,
                                            Object inputObject,
                                            Class<T> outputClass)
        Invokes the workflowAddTags method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowAddTags

        public static <T> T workflowAddTags​(String objectId,
                                            Class<T> outputClass,
                                            DXEnvironment env)
        Invokes the workflowAddTags method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowAddTags

        public static <T> T workflowAddTags​(String objectId,
                                            Object inputObject,
                                            Class<T> outputClass,
                                            DXEnvironment env)
        Invokes the workflowAddTags method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowAddTags​(String objectId)
        Deprecated.
        Use workflowAddTags(String, Class) instead and supply your own class to deserialize to.
        Invokes the workflowAddTags method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowAddTags​(String objectId,
                                                                              com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use workflowAddTags(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the workflowAddTags method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowAddTags​(String objectId,
                                                                              DXEnvironment env)
        Deprecated.
        Use workflowAddTags(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowAddTags method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowAddTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowAddTags​(String objectId,
                                                                              com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                              DXEnvironment env)
        Deprecated.
        Use workflowAddTags(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowAddTags method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowAddTypes

        public static <T> T workflowAddTypes​(String objectId,
                                             Class<T> outputClass)
        Invokes the workflowAddTypes method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowAddTypes

        public static <T> T workflowAddTypes​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass)
        Invokes the workflowAddTypes method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowAddTypes

        public static <T> T workflowAddTypes​(String objectId,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the workflowAddTypes method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowAddTypes

        public static <T> T workflowAddTypes​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the workflowAddTypes method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowAddTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowAddTypes​(String objectId)
        Deprecated.
        Use workflowAddTypes(String, Class) instead and supply your own class to deserialize to.
        Invokes the workflowAddTypes method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowAddTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowAddTypes​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use workflowAddTypes(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the workflowAddTypes method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowAddTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowAddTypes​(String objectId,
                                                                               DXEnvironment env)
        Deprecated.
        Use workflowAddTypes(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowAddTypes method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowAddTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowAddTypes​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                               DXEnvironment env)
        Deprecated.
        Use workflowAddTypes(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowAddTypes method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowClose

        public static <T> T workflowClose​(String objectId,
                                          Class<T> outputClass)
        Invokes the workflowClose method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowClose

        public static <T> T workflowClose​(String objectId,
                                          Object inputObject,
                                          Class<T> outputClass)
        Invokes the workflowClose method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowClose

        public static <T> T workflowClose​(String objectId,
                                          Class<T> outputClass,
                                          DXEnvironment env)
        Invokes the workflowClose method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowClose

        public static <T> T workflowClose​(String objectId,
                                          Object inputObject,
                                          Class<T> outputClass,
                                          DXEnvironment env)
        Invokes the workflowClose method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowClose

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowClose​(String objectId)
        Deprecated.
        Use workflowClose(String, Class) instead and supply your own class to deserialize to.
        Invokes the workflowClose method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowClose

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowClose​(String objectId,
                                                                            com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use workflowClose(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the workflowClose method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowClose

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowClose​(String objectId,
                                                                            DXEnvironment env)
        Deprecated.
        Use workflowClose(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowClose method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowClose

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowClose​(String objectId,
                                                                            com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                            DXEnvironment env)
        Deprecated.
        Use workflowClose(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowClose method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowDescribe

        public static <T> T workflowDescribe​(String objectId,
                                             Class<T> outputClass)
        Invokes the workflowDescribe method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowDescribe

        public static <T> T workflowDescribe​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass)
        Invokes the workflowDescribe method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowDescribe

        public static <T> T workflowDescribe​(String objectId,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the workflowDescribe method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowDescribe

        public static <T> T workflowDescribe​(String objectId,
                                             Object inputObject,
                                             Class<T> outputClass,
                                             DXEnvironment env)
        Invokes the workflowDescribe method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowDescribe​(String objectId)
        Deprecated.
        Use workflowDescribe(String, Class) instead and supply your own class to deserialize to.
        Invokes the workflowDescribe method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowDescribe​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use workflowDescribe(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the workflowDescribe method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowDescribe​(String objectId,
                                                                               DXEnvironment env)
        Deprecated.
        Use workflowDescribe(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowDescribe method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowDescribe

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowDescribe​(String objectId,
                                                                               com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                               DXEnvironment env)
        Deprecated.
        Use workflowDescribe(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowDescribe method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowDryRun

        public static <T> T workflowDryRun​(String objectId,
                                           Class<T> outputClass)
        Invokes the workflowDryRun method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowDryRun

        public static <T> T workflowDryRun​(String objectId,
                                           Object inputObject,
                                           Class<T> outputClass)
        Invokes the workflowDryRun method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowDryRun

        public static <T> T workflowDryRun​(String objectId,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the workflowDryRun method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowDryRun

        public static <T> T workflowDryRun​(String objectId,
                                           Object inputObject,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the workflowDryRun method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowDryRun

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowDryRun​(String objectId)
        Deprecated.
        Use workflowDryRun(String, Class) instead and supply your own class to deserialize to.
        Invokes the workflowDryRun method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowDryRun

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowDryRun​(String objectId,
                                                                             com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use workflowDryRun(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the workflowDryRun method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowDryRun

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowDryRun​(String objectId,
                                                                             DXEnvironment env)
        Deprecated.
        Use workflowDryRun(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowDryRun method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowDryRun

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowDryRun​(String objectId,
                                                                             com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                             DXEnvironment env)
        Deprecated.
        Use workflowDryRun(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowDryRun method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowGetDetails

        public static <T> T workflowGetDetails​(String objectId,
                                               Class<T> outputClass)
        Invokes the workflowGetDetails method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowGetDetails

        public static <T> T workflowGetDetails​(String objectId,
                                               Object inputObject,
                                               Class<T> outputClass)
        Invokes the workflowGetDetails method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowGetDetails

        public static <T> T workflowGetDetails​(String objectId,
                                               Class<T> outputClass,
                                               DXEnvironment env)
        Invokes the workflowGetDetails method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowGetDetails

        public static <T> T workflowGetDetails​(String objectId,
                                               Object inputObject,
                                               Class<T> outputClass,
                                               DXEnvironment env)
        Invokes the workflowGetDetails method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowGetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowGetDetails​(String objectId)
        Deprecated.
        Use workflowGetDetails(String, Class) instead and supply your own class to deserialize to.
        Invokes the workflowGetDetails method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowGetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowGetDetails​(String objectId,
                                                                                 com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use workflowGetDetails(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the workflowGetDetails method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowGetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowGetDetails​(String objectId,
                                                                                 DXEnvironment env)
        Deprecated.
        Use workflowGetDetails(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowGetDetails method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowGetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowGetDetails​(String objectId,
                                                                                 com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                 DXEnvironment env)
        Deprecated.
        Use workflowGetDetails(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowGetDetails method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowIsStageCompatible

        public static <T> T workflowIsStageCompatible​(String objectId,
                                                      Class<T> outputClass)
        Invokes the workflowIsStageCompatible method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowIsStageCompatible

        public static <T> T workflowIsStageCompatible​(String objectId,
                                                      Object inputObject,
                                                      Class<T> outputClass)
        Invokes the workflowIsStageCompatible method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowIsStageCompatible

        public static <T> T workflowIsStageCompatible​(String objectId,
                                                      Class<T> outputClass,
                                                      DXEnvironment env)
        Invokes the workflowIsStageCompatible method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowIsStageCompatible

        public static <T> T workflowIsStageCompatible​(String objectId,
                                                      Object inputObject,
                                                      Class<T> outputClass,
                                                      DXEnvironment env)
        Invokes the workflowIsStageCompatible method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowIsStageCompatible

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowIsStageCompatible​(String objectId)
        Deprecated.
        Use workflowIsStageCompatible(String, Class) instead and supply your own class to deserialize to.
        Invokes the workflowIsStageCompatible method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowIsStageCompatible

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowIsStageCompatible​(String objectId,
                                                                                        com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use workflowIsStageCompatible(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the workflowIsStageCompatible method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowIsStageCompatible

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowIsStageCompatible​(String objectId,
                                                                                        DXEnvironment env)
        Deprecated.
        Use workflowIsStageCompatible(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowIsStageCompatible method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowIsStageCompatible

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowIsStageCompatible​(String objectId,
                                                                                        com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                        DXEnvironment env)
        Deprecated.
        Use workflowIsStageCompatible(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowIsStageCompatible method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowListProjects

        public static <T> T workflowListProjects​(String objectId,
                                                 Class<T> outputClass)
        Invokes the workflowListProjects method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowListProjects

        public static <T> T workflowListProjects​(String objectId,
                                                 Object inputObject,
                                                 Class<T> outputClass)
        Invokes the workflowListProjects method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowListProjects

        public static <T> T workflowListProjects​(String objectId,
                                                 Class<T> outputClass,
                                                 DXEnvironment env)
        Invokes the workflowListProjects method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowListProjects

        public static <T> T workflowListProjects​(String objectId,
                                                 Object inputObject,
                                                 Class<T> outputClass,
                                                 DXEnvironment env)
        Invokes the workflowListProjects method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowListProjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowListProjects​(String objectId)
        Deprecated.
        Use workflowListProjects(String, Class) instead and supply your own class to deserialize to.
        Invokes the workflowListProjects method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowListProjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowListProjects​(String objectId,
                                                                                   com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use workflowListProjects(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the workflowListProjects method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowListProjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowListProjects​(String objectId,
                                                                                   DXEnvironment env)
        Deprecated.
        Use workflowListProjects(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowListProjects method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowListProjects

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowListProjects​(String objectId,
                                                                                   com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                   DXEnvironment env)
        Deprecated.
        Use workflowListProjects(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowListProjects method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowMoveStage

        public static <T> T workflowMoveStage​(String objectId,
                                              Class<T> outputClass)
        Invokes the workflowMoveStage method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowMoveStage

        public static <T> T workflowMoveStage​(String objectId,
                                              Object inputObject,
                                              Class<T> outputClass)
        Invokes the workflowMoveStage method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowMoveStage

        public static <T> T workflowMoveStage​(String objectId,
                                              Class<T> outputClass,
                                              DXEnvironment env)
        Invokes the workflowMoveStage method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowMoveStage

        public static <T> T workflowMoveStage​(String objectId,
                                              Object inputObject,
                                              Class<T> outputClass,
                                              DXEnvironment env)
        Invokes the workflowMoveStage method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowMoveStage

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowMoveStage​(String objectId)
        Deprecated.
        Use workflowMoveStage(String, Class) instead and supply your own class to deserialize to.
        Invokes the workflowMoveStage method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowMoveStage

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowMoveStage​(String objectId,
                                                                                com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use workflowMoveStage(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the workflowMoveStage method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowMoveStage

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowMoveStage​(String objectId,
                                                                                DXEnvironment env)
        Deprecated.
        Use workflowMoveStage(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowMoveStage method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowMoveStage

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowMoveStage​(String objectId,
                                                                                com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                DXEnvironment env)
        Deprecated.
        Use workflowMoveStage(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowMoveStage method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowOverwrite

        public static <T> T workflowOverwrite​(String objectId,
                                              Class<T> outputClass)
        Invokes the workflowOverwrite method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowOverwrite

        public static <T> T workflowOverwrite​(String objectId,
                                              Object inputObject,
                                              Class<T> outputClass)
        Invokes the workflowOverwrite method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowOverwrite

        public static <T> T workflowOverwrite​(String objectId,
                                              Class<T> outputClass,
                                              DXEnvironment env)
        Invokes the workflowOverwrite method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowOverwrite

        public static <T> T workflowOverwrite​(String objectId,
                                              Object inputObject,
                                              Class<T> outputClass,
                                              DXEnvironment env)
        Invokes the workflowOverwrite method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowOverwrite

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowOverwrite​(String objectId)
        Deprecated.
        Use workflowOverwrite(String, Class) instead and supply your own class to deserialize to.
        Invokes the workflowOverwrite method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowOverwrite

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowOverwrite​(String objectId,
                                                                                com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use workflowOverwrite(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the workflowOverwrite method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowOverwrite

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowOverwrite​(String objectId,
                                                                                DXEnvironment env)
        Deprecated.
        Use workflowOverwrite(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowOverwrite method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowOverwrite

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowOverwrite​(String objectId,
                                                                                com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                DXEnvironment env)
        Deprecated.
        Use workflowOverwrite(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowOverwrite method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRemoveStage

        public static <T> T workflowRemoveStage​(String objectId,
                                                Class<T> outputClass)
        Invokes the workflowRemoveStage method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRemoveStage

        public static <T> T workflowRemoveStage​(String objectId,
                                                Object inputObject,
                                                Class<T> outputClass)
        Invokes the workflowRemoveStage method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRemoveStage

        public static <T> T workflowRemoveStage​(String objectId,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the workflowRemoveStage method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRemoveStage

        public static <T> T workflowRemoveStage​(String objectId,
                                                Object inputObject,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the workflowRemoveStage method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRemoveStage

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowRemoveStage​(String objectId)
        Deprecated.
        Use workflowRemoveStage(String, Class) instead and supply your own class to deserialize to.
        Invokes the workflowRemoveStage method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRemoveStage

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowRemoveStage​(String objectId,
                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use workflowRemoveStage(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the workflowRemoveStage method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRemoveStage

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowRemoveStage​(String objectId,
                                                                                  DXEnvironment env)
        Deprecated.
        Use workflowRemoveStage(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowRemoveStage method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRemoveStage

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowRemoveStage​(String objectId,
                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                  DXEnvironment env)
        Deprecated.
        Use workflowRemoveStage(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowRemoveStage method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRemoveTags

        public static <T> T workflowRemoveTags​(String objectId,
                                               Class<T> outputClass)
        Invokes the workflowRemoveTags method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRemoveTags

        public static <T> T workflowRemoveTags​(String objectId,
                                               Object inputObject,
                                               Class<T> outputClass)
        Invokes the workflowRemoveTags method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRemoveTags

        public static <T> T workflowRemoveTags​(String objectId,
                                               Class<T> outputClass,
                                               DXEnvironment env)
        Invokes the workflowRemoveTags method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRemoveTags

        public static <T> T workflowRemoveTags​(String objectId,
                                               Object inputObject,
                                               Class<T> outputClass,
                                               DXEnvironment env)
        Invokes the workflowRemoveTags method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowRemoveTags​(String objectId)
        Deprecated.
        Use workflowRemoveTags(String, Class) instead and supply your own class to deserialize to.
        Invokes the workflowRemoveTags method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowRemoveTags​(String objectId,
                                                                                 com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use workflowRemoveTags(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the workflowRemoveTags method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowRemoveTags​(String objectId,
                                                                                 DXEnvironment env)
        Deprecated.
        Use workflowRemoveTags(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowRemoveTags method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRemoveTags

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowRemoveTags​(String objectId,
                                                                                 com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                 DXEnvironment env)
        Deprecated.
        Use workflowRemoveTags(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowRemoveTags method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRemoveTypes

        public static <T> T workflowRemoveTypes​(String objectId,
                                                Class<T> outputClass)
        Invokes the workflowRemoveTypes method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRemoveTypes

        public static <T> T workflowRemoveTypes​(String objectId,
                                                Object inputObject,
                                                Class<T> outputClass)
        Invokes the workflowRemoveTypes method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRemoveTypes

        public static <T> T workflowRemoveTypes​(String objectId,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the workflowRemoveTypes method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRemoveTypes

        public static <T> T workflowRemoveTypes​(String objectId,
                                                Object inputObject,
                                                Class<T> outputClass,
                                                DXEnvironment env)
        Invokes the workflowRemoveTypes method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRemoveTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowRemoveTypes​(String objectId)
        Deprecated.
        Use workflowRemoveTypes(String, Class) instead and supply your own class to deserialize to.
        Invokes the workflowRemoveTypes method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRemoveTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowRemoveTypes​(String objectId,
                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use workflowRemoveTypes(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the workflowRemoveTypes method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRemoveTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowRemoveTypes​(String objectId,
                                                                                  DXEnvironment env)
        Deprecated.
        Use workflowRemoveTypes(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowRemoveTypes method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRemoveTypes

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowRemoveTypes​(String objectId,
                                                                                  com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                  DXEnvironment env)
        Deprecated.
        Use workflowRemoveTypes(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowRemoveTypes method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRename

        public static <T> T workflowRename​(String objectId,
                                           Class<T> outputClass)
        Invokes the workflowRename method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRename

        public static <T> T workflowRename​(String objectId,
                                           Object inputObject,
                                           Class<T> outputClass)
        Invokes the workflowRename method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRename

        public static <T> T workflowRename​(String objectId,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the workflowRename method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRename

        public static <T> T workflowRename​(String objectId,
                                           Object inputObject,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the workflowRename method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRename

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowRename​(String objectId)
        Deprecated.
        Use workflowRename(String, Class) instead and supply your own class to deserialize to.
        Invokes the workflowRename method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRename

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowRename​(String objectId,
                                                                             com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use workflowRename(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the workflowRename method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRename

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowRename​(String objectId,
                                                                             DXEnvironment env)
        Deprecated.
        Use workflowRename(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowRename method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRename

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowRename​(String objectId,
                                                                             com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                             DXEnvironment env)
        Deprecated.
        Use workflowRename(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowRename method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRun

        public static <T> T workflowRun​(String objectId,
                                        Class<T> outputClass)
        Invokes the workflowRun method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRun

        public static <T> T workflowRun​(String objectId,
                                        Object inputObject,
                                        Class<T> outputClass)
        Invokes the workflowRun method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRun

        public static <T> T workflowRun​(String objectId,
                                        Class<T> outputClass,
                                        DXEnvironment env)
        Invokes the workflowRun method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRun

        public static <T> T workflowRun​(String objectId,
                                        Object inputObject,
                                        Class<T> outputClass,
                                        DXEnvironment env)
        Invokes the workflowRun method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRun

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowRun​(String objectId)
        Deprecated.
        Use workflowRun(String, Class) instead and supply your own class to deserialize to.
        Invokes the workflowRun method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRun

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowRun​(String objectId,
                                                                          com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use workflowRun(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the workflowRun method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRun

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowRun​(String objectId,
                                                                          DXEnvironment env)
        Deprecated.
        Use workflowRun(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowRun method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowRun

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowRun​(String objectId,
                                                                          com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                          DXEnvironment env)
        Deprecated.
        Use workflowRun(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowRun method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowValidateBatch

        public static <T> T workflowValidateBatch​(String objectId,
                                                  Class<T> outputClass)
        Invokes the workflowValidateBatch method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowValidateBatch

        public static <T> T workflowValidateBatch​(String objectId,
                                                  Object inputObject,
                                                  Class<T> outputClass)
        Invokes the workflowValidateBatch method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowValidateBatch

        public static <T> T workflowValidateBatch​(String objectId,
                                                  Class<T> outputClass,
                                                  DXEnvironment env)
        Invokes the workflowValidateBatch method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowValidateBatch

        public static <T> T workflowValidateBatch​(String objectId,
                                                  Object inputObject,
                                                  Class<T> outputClass,
                                                  DXEnvironment env)
        Invokes the workflowValidateBatch method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowValidateBatch

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowValidateBatch​(String objectId)
        Deprecated.
        Use workflowValidateBatch(String, Class) instead and supply your own class to deserialize to.
        Invokes the workflowValidateBatch method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowValidateBatch

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowValidateBatch​(String objectId,
                                                                                    com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use workflowValidateBatch(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the workflowValidateBatch method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowValidateBatch

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowValidateBatch​(String objectId,
                                                                                    DXEnvironment env)
        Deprecated.
        Use workflowValidateBatch(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowValidateBatch method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowValidateBatch

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowValidateBatch​(String objectId,
                                                                                    com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                    DXEnvironment env)
        Deprecated.
        Use workflowValidateBatch(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowValidateBatch method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowSetDetails

        public static <T> T workflowSetDetails​(String objectId,
                                               Class<T> outputClass)
        Invokes the workflowSetDetails method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowSetDetails

        public static <T> T workflowSetDetails​(String objectId,
                                               Object inputObject,
                                               Class<T> outputClass)
        Invokes the workflowSetDetails method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowSetDetails

        public static <T> T workflowSetDetails​(String objectId,
                                               Class<T> outputClass,
                                               DXEnvironment env)
        Invokes the workflowSetDetails method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowSetDetails

        public static <T> T workflowSetDetails​(String objectId,
                                               Object inputObject,
                                               Class<T> outputClass,
                                               DXEnvironment env)
        Invokes the workflowSetDetails method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowSetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowSetDetails​(String objectId)
        Deprecated.
        Use workflowSetDetails(String, Class) instead and supply your own class to deserialize to.
        Invokes the workflowSetDetails method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowSetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowSetDetails​(String objectId,
                                                                                 com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use workflowSetDetails(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the workflowSetDetails method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowSetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowSetDetails​(String objectId,
                                                                                 DXEnvironment env)
        Deprecated.
        Use workflowSetDetails(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowSetDetails method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowSetDetails

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowSetDetails​(String objectId,
                                                                                 com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                 DXEnvironment env)
        Deprecated.
        Use workflowSetDetails(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowSetDetails method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowSetProperties

        public static <T> T workflowSetProperties​(String objectId,
                                                  Class<T> outputClass)
        Invokes the workflowSetProperties method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowSetProperties

        public static <T> T workflowSetProperties​(String objectId,
                                                  Object inputObject,
                                                  Class<T> outputClass)
        Invokes the workflowSetProperties method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowSetProperties

        public static <T> T workflowSetProperties​(String objectId,
                                                  Class<T> outputClass,
                                                  DXEnvironment env)
        Invokes the workflowSetProperties method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowSetProperties

        public static <T> T workflowSetProperties​(String objectId,
                                                  Object inputObject,
                                                  Class<T> outputClass,
                                                  DXEnvironment env)
        Invokes the workflowSetProperties method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowSetProperties​(String objectId)
        Deprecated.
        Use workflowSetProperties(String, Class) instead and supply your own class to deserialize to.
        Invokes the workflowSetProperties method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowSetProperties​(String objectId,
                                                                                    com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use workflowSetProperties(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the workflowSetProperties method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowSetProperties​(String objectId,
                                                                                    DXEnvironment env)
        Deprecated.
        Use workflowSetProperties(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowSetProperties method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowSetProperties

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowSetProperties​(String objectId,
                                                                                    com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                    DXEnvironment env)
        Deprecated.
        Use workflowSetProperties(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowSetProperties method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowSetVisibility

        public static <T> T workflowSetVisibility​(String objectId,
                                                  Class<T> outputClass)
        Invokes the workflowSetVisibility method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowSetVisibility

        public static <T> T workflowSetVisibility​(String objectId,
                                                  Object inputObject,
                                                  Class<T> outputClass)
        Invokes the workflowSetVisibility method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowSetVisibility

        public static <T> T workflowSetVisibility​(String objectId,
                                                  Class<T> outputClass,
                                                  DXEnvironment env)
        Invokes the workflowSetVisibility method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowSetVisibility

        public static <T> T workflowSetVisibility​(String objectId,
                                                  Object inputObject,
                                                  Class<T> outputClass,
                                                  DXEnvironment env)
        Invokes the workflowSetVisibility method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowSetVisibility

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowSetVisibility​(String objectId)
        Deprecated.
        Use workflowSetVisibility(String, Class) instead and supply your own class to deserialize to.
        Invokes the workflowSetVisibility method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowSetVisibility

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowSetVisibility​(String objectId,
                                                                                    com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use workflowSetVisibility(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the workflowSetVisibility method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowSetVisibility

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowSetVisibility​(String objectId,
                                                                                    DXEnvironment env)
        Deprecated.
        Use workflowSetVisibility(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowSetVisibility method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowSetVisibility

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowSetVisibility​(String objectId,
                                                                                    com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                    DXEnvironment env)
        Deprecated.
        Use workflowSetVisibility(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowSetVisibility method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowUpdate

        public static <T> T workflowUpdate​(String objectId,
                                           Class<T> outputClass)
        Invokes the workflowUpdate method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowUpdate

        public static <T> T workflowUpdate​(String objectId,
                                           Object inputObject,
                                           Class<T> outputClass)
        Invokes the workflowUpdate method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowUpdate

        public static <T> T workflowUpdate​(String objectId,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the workflowUpdate method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowUpdate

        public static <T> T workflowUpdate​(String objectId,
                                           Object inputObject,
                                           Class<T> outputClass,
                                           DXEnvironment env)
        Invokes the workflowUpdate method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowUpdate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowUpdate​(String objectId)
        Deprecated.
        Use workflowUpdate(String, Class) instead and supply your own class to deserialize to.
        Invokes the workflowUpdate method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowUpdate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowUpdate​(String objectId,
                                                                             com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use workflowUpdate(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the workflowUpdate method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowUpdate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowUpdate​(String objectId,
                                                                             DXEnvironment env)
        Deprecated.
        Use workflowUpdate(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowUpdate method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowUpdate

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowUpdate​(String objectId,
                                                                             com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                             DXEnvironment env)
        Deprecated.
        Use workflowUpdate(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowUpdate method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowUpdateStageExecutable

        public static <T> T workflowUpdateStageExecutable​(String objectId,
                                                          Class<T> outputClass)
        Invokes the workflowUpdateStageExecutable method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowUpdateStageExecutable

        public static <T> T workflowUpdateStageExecutable​(String objectId,
                                                          Object inputObject,
                                                          Class<T> outputClass)
        Invokes the workflowUpdateStageExecutable method with the given input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowUpdateStageExecutable

        public static <T> T workflowUpdateStageExecutable​(String objectId,
                                                          Class<T> outputClass,
                                                          DXEnvironment env)
        Invokes the workflowUpdateStageExecutable method with an empty input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowUpdateStageExecutable

        public static <T> T workflowUpdateStageExecutable​(String objectId,
                                                          Object inputObject,
                                                          Class<T> outputClass,
                                                          DXEnvironment env)
        Invokes the workflowUpdateStageExecutable method with the given input using the given environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Response object
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowUpdateStageExecutable

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowUpdateStageExecutable​(String objectId)
        Deprecated.
        Use workflowUpdateStageExecutable(String, Class) instead and supply your own class to deserialize to.
        Invokes the workflowUpdateStageExecutable method.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowUpdateStageExecutable

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowUpdateStageExecutable​(String objectId,
                                                                                            com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use workflowUpdateStageExecutable(String, Object, Class) instead and supply your own class to deserialize to.
        Invokes the workflowUpdateStageExecutable method with the specified parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowUpdateStageExecutable

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowUpdateStageExecutable​(String objectId,
                                                                                            DXEnvironment env)
        Deprecated.
        Use workflowUpdateStageExecutable(String, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowUpdateStageExecutable method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowUpdateStageExecutable

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowUpdateStageExecutable​(String objectId,
                                                                                            com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                                            DXEnvironment env)
        Deprecated.
        Use workflowUpdateStageExecutable(String, Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowUpdateStageExecutable method with the specified environment and parameters.

        For more information about this method, see the API specification.

        Parameters:
        objectId - ID of the object to operate on
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowNew

        public static <T> T workflowNew​(Class<T> outputClass)
        Invokes the workflowNew method with an empty input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowNew

        public static <T> T workflowNew​(Class<T> outputClass,
                                        DXEnvironment env)
        Invokes the workflowNew method with an empty input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowNew

        public static <T> T workflowNew​(Object inputObject,
                                        Class<T> outputClass)
        Invokes the workflowNew method with the specified input, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowNew

        public static <T> T workflowNew​(Object inputObject,
                                        Class<T> outputClass,
                                        DXEnvironment env)
        Invokes the workflowNew method with the specified input using the specified environment, deserializing to an object of the specified class.

        For more information about this method, see the API specification.

        Parameters:
        inputObject - input object (to be JSON serialized to an input hash)
        outputClass - class to deserialize the server reponse to
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowNew()
        Deprecated.
        Use workflowNew(Class) instead and supply your own class to deserialize to.
        Invokes the workflowNew method.

        For more information about this method, see the API specification.

        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowNew​(com.fasterxml.jackson.databind.JsonNode inputParams)
        Deprecated.
        Use workflowNew(Object, Class) instead and supply your own class to deserialize to.
        Invokes the workflowNew method with the specified input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowNew​(DXEnvironment env)
        Deprecated.
        Use workflowNew(Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowNew method with the specified environment.

        For more information about this method, see the API specification.

        Parameters:
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).
      • workflowNew

        @Deprecated
        public static com.fasterxml.jackson.databind.JsonNode workflowNew​(com.fasterxml.jackson.databind.JsonNode inputParams,
                                                                          DXEnvironment env)
        Deprecated.
        Use workflowNew(Object, Class, DXEnvironment) instead and supply your own class to deserialize to.
        Invokes the workflowNew method with the specified environment and input parameters.

        For more information about this method, see the API specification.

        Parameters:
        inputParams - input parameters to the API call
        env - environment object specifying the auth token and remote server and protocol
        Returns:
        Server response parsed from JSON
        Throws:
        DXAPIException - If the server returns a complete response with an HTTP status code other than 200 (OK).
        DXHTTPException - If an error occurs while making the HTTP request or obtaining the response (includes HTTP protocol errors).