Package com.veeva.vault.sdk.api.i18n
Interface TranslationsReadRequest
public interface TranslationsReadRequest
Provides methods to retrieve information about what Messages to read.
-
Method Summary
Modifier and TypeMethodDescriptionSpecifies the name of the Vault-supported label set.Retrieves the specified Vault-supported language code.Retrieves the specified Messagegroup name.Retrieves the optional collection of Message names.
-
Method Details
-
getMessageGroup
String getMessageGroup()Retrieves the specified Messagegroup name. For example,control__c.- Returns:
- name of a
Messagegroup, not null or empty
-
getMessages
Collection<String> getMessages()Retrieves the optional collection of Message names. For example,[max__c, min__c]. If unspecified, returns all Messages in theMessagegroup.- Returns:
- optional names of Messages in the given
Messagegroup. If null or empty, returns all Messages in theMessagegroup
-
getLanguage
String getLanguage()Retrieves the specified Vault-supported language code. For example,en,ja,zh.- Returns:
- language code, not null or empty
-
getLabelSet
String getLabelSet()Specifies the name of the Vault-supported label set. For example,medical_english__v.- Returns:
- label set
-