Enum EDesignerEndpoint

java.lang.Object
java.lang.Enum<EDesignerEndpoint>
de.xima.fc.security.endpoint.EDesignerEndpoint
All Implemented Interfaces:
IWebEndpoint, Serializable, Comparable<EDesignerEndpoint>

public enum EDesignerEndpoint extends Enum<EDesignerEndpoint> implements IWebEndpoint
Default definitions for designer web endpoints.
Since:
8.0.0
Author:
XIMA Media GmbH
  • Enum Constant Details

  • Method Details

    • values

      public static EDesignerEndpoint[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static EDesignerEndpoint valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • getId

      @NotEmpty public @NotEmpty String getId()
      Specified by:
      getId in interface IWebEndpoint
      Returns:
      the unique ID of this web endpoint.
    • getUriResolver

      @NotNull public @NotNull IUriResolver getUriResolver()
      Specified by:
      getUriResolver in interface IWebEndpoint
      Returns:
      the uri resolver which defines the location of this endpoint.
    • getAvailibilityResolver

      public IAvailabiltyResolver getAvailibilityResolver()
      Specified by:
      getAvailibilityResolver in interface IWebEndpoint
      Returns:
      the availability resolver that defines the availability requirements of this web endpoint. May be null. If null resolver is returned than the web endpoint is available.
    • getAuthorizer

      public IAuthorizer getAuthorizer()
      Specified by:
      getAuthorizer in interface IWebEndpoint
      Returns:
      the authorizer that defines authorization requirements of this web endpoint. May be null. If null authorizer is returned than the view web enpoint is public, which means any user can access it.
    • toString

      public String toString()
      Overrides:
      toString in class Enum<EDesignerEndpoint>