Interface CredentialVault

    • Method Detail

      • getCredentialVaultParameterByName

        CredentialVaultParameter getCredentialVaultParameterByName​(String parameterName)
        Return the JobParameter for the given name. The name is taken from the JobDefinitionParameter
        Parameters:
        parameterName - The name of the CredentialVaultParameter
        Returns:
        The CredentialVaultParameter for the given name, null if the parameter with that name could not be found
      • setCredentialProvider

        void setCredentialProvider​(CredentialProvider newCredentialProvider)
        Set the value for CredentialProvider. This value is mandatory.
        Parameters:
        newCredentialProvider - is the object to set CredentialProvider to. The Credential Provider of a CredentialVault. The Credential Provider defines what type of vault it is. The Credential Vault is a real instance of such a CredentialProvider. If this is null, then the object cannot be persisted.
      • getCredentialVaultParameterByCredentialProviderParameter

        CredentialVaultParameter getCredentialVaultParameterByCredentialProviderParameter​(CredentialProviderParameter credentialProviderParameter)
        Get the CredentialVaultParameter by CredentialProviderParameter.
        Parameters:
        credentialProviderParameter -
        Returns:
        the CredentialVaultParameter, or null if it could not be found
      • checkCreatePrivilege

        RequiredPermission checkCreatePrivilege()
        Check whether or not the create action can be performed on this object.
        Returns:
        a RequiredPermission instance indicating whether the current user has the privilege. To check this, use isAllowed() on the returned permission.
      • checkViewPrivilege

        RequiredPermission checkViewPrivilege()
        Check whether or not the view action can be performed on this object.
        Returns:
        a RequiredPermission instance indicating whether the current user has the privilege. To check this, use isAllowed() on the returned permission.
      • checkEditPrivilege

        RequiredPermission checkEditPrivilege()
        Check whether or not the edit action can be performed on this object.
        Returns:
        a RequiredPermission instance indicating whether the current user has the privilege. To check this, use isAllowed() on the returned permission.
      • checkDeletePrivilege

        RequiredPermission checkDeletePrivilege()
        Check whether or not the delete action can be performed on this object.
        Returns:
        a RequiredPermission instance indicating whether the current user has the privilege. To check this, use isAllowed() on the returned permission.