Interface TenantModifier

    • Method Detail

      • getName

        java.lang.String getName()
        Get the current tenant name which is held in this TenantModifier.
        Returns:
        the name as String
        Since:
        10.0.28
      • validateName

        boolean validateName​(java.lang.String name)
                      throws ValidationException
        Validate the given name.
        Parameters:
        name - the name to validate as String
        Returns:
        true if the name is valid
        Throws:
        ValidationException - if the name is invalid
        Since:
        10.0.28
      • getDescription

        java.lang.String getDescription()
        Get the current tenant description which is held in this TenantModifier.
        Returns:
        the description as String
        Since:
        10.0.28
      • setDescription

        TenantModifier setDescription​(java.lang.String description)
                               throws ValidationException

        Change the description of the associated Tenant.

        The change is applied after the Modifier.write() method is called.

        Parameters:
        description - the new description as String
        Returns:
        the TenantModifier
        Throws:
        ValidationException - if the new description is invalid
        Since:
        10.0.28
      • validateDescription

        boolean validateDescription​(java.lang.String description)
                             throws ValidationException
        Validate the given description.
        Parameters:
        description - the description to validate as String
        Returns:
        true if the description is valid
        Throws:
        ValidationException - if the description is invalid
        Since:
        10.0.28