Class IdpAdapterName
java.lang.Object
com.inductiveautomation.ignition.gateway.auth.idp.IdpAdapterName
- All Implemented Interfaces:
Comparable<IdpAdapterName>
Wrapper around a raw IdP Adapter name String
. Sanitizes the raw name such that:
- The first character is replaced with an underscore if it is not an underscore or alphabetical
- Any remaining characters are replaced with underscores if they are not underscores, alphabetical or numeric
An IdpAdapaterName is equal to another if its sanitized name is equal to (ignoring case) the other's sanitized name.
Makes for good consistent hash keys as the hash code is based on the sanitized name converted to all lowercase characters.
When one IdpAdapterName is compared with another, the result is the same as if their sanitized names are compared with each other (ignoring case).
-
Method Summary
Modifier and TypeMethodDescriptionint
compareTo
(IdpAdapterName that) boolean
getName()
int
hashCode()
static IdpAdapterName
Create a newIdpAdapterName
given the raw name as aString
toString()
-
Method Details
-
getName
- Returns:
- the raw un-sanitized name
-
of
Create a newIdpAdapterName
given the raw name as aString
- Parameters:
name
- the raw name as aString
- Returns:
- the
IdpAdapterName
composed of the raw name as aString
-
equals
-
hashCode
public int hashCode() -
toString
-
compareTo
- Specified by:
compareTo
in interfaceComparable<IdpAdapterName>
-