Class Constraint

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Cloneable

    @Deprecated(since="2021-05-27")
    public class Constraint
    extends java.lang.Object
    implements java.lang.Cloneable, java.io.Serializable
    Deprecated.
    The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.
    Constraint Describe an auth and/or data constraint.
    See Also:
    Serialized Form
    • Constructor Detail

      • Constraint

        public Constraint()
        Deprecated.
        Constructor.
      • Constraint

        public Constraint​(java.lang.String name,
                          java.lang.String role)
        Deprecated.
        Convenience Constructor.
        Parameters:
        name - the name
        role - the role
    • Method Detail

      • validateMethod

        public static boolean validateMethod​(java.lang.String method)
        Deprecated.
      • clone

        public java.lang.Object clone()
                               throws java.lang.CloneNotSupportedException
        Deprecated.
        Throws:
        java.lang.CloneNotSupportedException
      • setName

        public void setName​(java.lang.String name)
        Deprecated.
        Parameters:
        name - the name
      • getName

        public java.lang.String getName()
        Deprecated.
      • setRoles

        public void setRoles​(java.lang.String[] roles)
        Deprecated.
      • isAnyRole

        public boolean isAnyRole()
        Deprecated.
        Returns:
        True if any user role is permitted.
      • isAnyAuth

        public boolean isAnyAuth()
        Deprecated.
        Servlet Spec 3.1, pg 140
        Returns:
        True if any authenticated user is permitted (ie a role "**" was specified in the constraint).
      • getRoles

        public java.lang.String[] getRoles()
        Deprecated.
        Returns:
        List of roles for this constraint.
      • hasRole

        public boolean hasRole​(java.lang.String role)
        Deprecated.
        Parameters:
        role - the role
        Returns:
        True if the constraint contains the role.
      • setAuthenticate

        public void setAuthenticate​(boolean authenticate)
        Deprecated.
        Parameters:
        authenticate - True if users must be authenticated
      • getAuthenticate

        public boolean getAuthenticate()
        Deprecated.
        Returns:
        True if the constraint requires request authentication
      • isForbidden

        public boolean isForbidden()
        Deprecated.
        Returns:
        True if authentication required but no roles set
      • setDataConstraint

        public void setDataConstraint​(int c)
        Deprecated.
        Parameters:
        c - Data constrain indicator: 0=DC+NONE, 1=DC_INTEGRAL & 2=DC_CONFIDENTIAL
      • getDataConstraint

        public int getDataConstraint()
        Deprecated.
        Returns:
        Data constrain indicator: 0=DC+NONE, 1=DC_INTEGRAL & 2=DC_CONFIDENTIAL
      • hasDataConstraint

        public boolean hasDataConstraint()
        Deprecated.
        Returns:
        True if a data constraint has been set.
      • toString

        public java.lang.String toString()
        Deprecated.
        Overrides:
        toString in class java.lang.Object