Class PersistentProviderRegistrations.Property
- java.lang.Object
-
- org.apache.catalina.authenticator.jaspic.PersistentProviderRegistrations.Property
-
- Enclosing class:
- PersistentProviderRegistrations
public static class PersistentProviderRegistrations.Property extends java.lang.ObjectRepresents a name-value property within a JASPIC provider registration.
-
-
Constructor Summary
Constructors Constructor Description Property()Constructs a new Property instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetName()Returns the name of the property.java.lang.StringgetValue()Returns the value of the property.voidsetName(java.lang.String name)Sets the name of the property.voidsetValue(java.lang.String value)Sets the value of the property.
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Returns the name of the property.- Returns:
- the name
-
setName
public void setName(java.lang.String name)
Sets the name of the property.- Parameters:
name- the name
-
getValue
public java.lang.String getValue()
Returns the value of the property.- Returns:
- the value
-
setValue
public void setValue(java.lang.String value)
Sets the value of the property.- Parameters:
value- the value
-
-