Class AzureCognitiveServices

    • Field Summary

      Fields 
      Modifier and TypeFieldDescription
      protected static booleanUSE_v3
      Flag to use version 3.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethodDescription
      booleancanTranslate​(java.lang.String sourceLanguageCode, java.lang.String targetLanguageCode)
      Checks if a translation is handled between two language codes.
      voiddeconfigure()
      Deconfigures the translator to "lose" the API key(s).
      java.lang.StringdetectLanguage​(java.lang.String text)
      Detects the language of a text using the Azure Cognitive Services.
      java.lang.StringgetLanguageCode​(java.lang.String languageCode)
      Gets the "real" language code, no matter the input case.
      java.lang.StringgetLanguageDescription​(java.lang.String languageCode)
      Gets the language description for a language code, e.g.
      java.lang.String[]getLanguages()
      Gets the supported languages by the Azure Cognitive Services.
      java.lang.StringgetName()
      Returns the name of this translator.
      java.lang.StringgetReadyState()
      Gets the ready state of this translator.
      booleanisLanguageHandled​(java.lang.String languageCode)
      Verifies if a Language Code is handled by this translator.
      voidsetSubscriptionKey​(java.lang.String key)
      Constructs the TokenAccess instance based on the subsciption key.
      Translationtranslate​(KString sourceText, java.lang.String sourceLanguageCode, java.lang.String targetLanguageCode)
      Translates a text in plain text or HTML.
      voidupdateSupportedLanguages()
      Updates the translator with the supported languages by means of requesting the information from the service.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • USE_v3

        protected static boolean USE_v3
        Flag to use version 3.
    • Constructor Detail

      • AzureCognitiveServices

        public AzureCognitiveServices()
    • Method Detail

      • setSubscriptionKey

        public void setSubscriptionKey​(java.lang.String key)
                                throws java.lang.IllegalArgumentException
        Constructs the TokenAccess instance based on the subsciption key.
        Parameters:
        key - The subscription key.
        Throws:
        java.lang.IllegalArgumentException - For invalid key.
      • updateSupportedLanguages

        public void updateSupportedLanguages()
        Updates the translator with the supported languages by means of requesting the information from the service. If the request fails, it will be logged in the server.
        Specified by:
        updateSupportedLanguages in interface ITranslator
      • getLanguageCode

        public java.lang.String getLanguageCode​(java.lang.String languageCode)
        Gets the "real" language code, no matter the input case.
        Specified by:
        getLanguageCode in interface ITranslator
        Parameters:
        languageCode - The language code.
        Returns:
        The potentially changed language code if the case was wrong, or null if language is not supported.
      • deconfigure

        public void deconfigure()
        Deconfigures the translator to "lose" the API key(s).
        Specified by:
        deconfigure in interface ITranslator
      • getReadyState

        public java.lang.String getReadyState()
        Gets the ready state of this translator.
        Specified by:
        getReadyState in interface ITranslator
        Returns:
        An error message describing the state (e.g. "Missing API key"), or null for OK.
      • getName

        public java.lang.String getName()
        Returns the name of this translator.
        Specified by:
        getName in interface ITranslator
        Returns:
        A String with the name of the translator, e.g. "Google Translate" or "Azure Cognitive Services".
      • isLanguageHandled

        public boolean isLanguageHandled​(java.lang.String languageCode)
        Verifies if a Language Code is handled by this translator.
        Specified by:
        isLanguageHandled in interface ITranslator
        Parameters:
        languageCode - The language code.
        Returns:
        true if supported, false if not.
      • getLanguageDescription

        public java.lang.String getLanguageDescription​(java.lang.String languageCode)
        Gets the language description for a language code, e.g. "sv" would be "Swedish".
        Specified by:
        getLanguageDescription in interface ITranslator
        Parameters:
        languageCode - The language code.
        Returns:
        The language description the current Eclipse + iizi language (English only for now).
      • canTranslate

        public boolean canTranslate​(java.lang.String sourceLanguageCode,
                                    java.lang.String targetLanguageCode)
        Checks if a translation is handled between two language codes.
        Specified by:
        canTranslate in interface ITranslator
        Parameters:
        sourceLanguageCode - The source language code.
        targetLanguageCode - The target language code.
        Returns:
        true if supported, false if not.
      • translate

        public Translation translate​(KString sourceText,
                                     java.lang.String sourceLanguageCode,
                                     java.lang.String targetLanguageCode)
                              throws TranslationException,
                                     RequestException
        Translates a text in plain text or HTML.
        Specified by:
        translate in interface ITranslator
        Parameters:
        sourceText - The source text to translate.
        sourceLanguageCode - The source language code, null for automatic detection.
        targetLanguageCode - The target language code.
        Returns:
        The translation.
        Throws:
        RequestException - If the translation web service failed.
        TranslationException - An exception for translation failure.
      • getLanguages

        public java.lang.String[] getLanguages()
                                        throws TranslationException,
                                               RequestException
        Gets the supported languages by the Azure Cognitive Services. This is a Service Request that takes a while to execute.
        Returns:
        The array of supported language codes.
        Throws:
        RequestException - If the translation web service failed.
        TranslationException - An exception for translation failure.
      • detectLanguage

        public java.lang.String detectLanguage​(java.lang.String text)
                                        throws TranslationException,
                                               RequestException
        Detects the language of a text using the Azure Cognitive Services.
        Parameters:
        text - Text to detect the language.
        Returns:
        The detected language with the highest score.
        Throws:
        RequestException - If the translation web service failed.
        TranslationException - An exception for translation failure.