Class PasswordParameterType


public class PasswordParameterType
extends StringParameterType
This class represent a parameter type that is a password (or any other type of masked string). Max length can not be longer than 255, and multiple values are not supported.
Since:
3.7
Author:
Nicklas
  • Constructor Details

    • PasswordParameterType

      public PasswordParameterType()
      Create a new password parameter type, setting the max length to 255 and nulls are allowed.
    • PasswordParameterType

      public PasswordParameterType​(Integer maxLength, boolean notNull)
      Create a new password parameter type.
      Parameters:
      maxLength - The maximum length of the string that is allowed or null to allow as long as possible
      notNull - FALSE if nulls values are allowed, TRUE otherwise
  • Method Details