Class PersistentProviderRegistrations.Provider
- java.lang.Object
-
- org.apache.catalina.authenticator.jaspic.PersistentProviderRegistrations.Provider
-
- Enclosing class:
- PersistentProviderRegistrations
public static class PersistentProviderRegistrations.Provider extends java.lang.ObjectRepresents a single JASPIC provider registration.
-
-
Constructor Summary
Constructors Constructor Description Provider()Constructs a new Provider instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddProperty(PersistentProviderRegistrations.Property property)Adds a property to the provider.java.lang.StringgetAppContext()Returns the application context of the provider.java.lang.StringgetClassName()Returns the class name of the provider.java.lang.StringgetDescription()Returns the description of the provider.java.lang.StringgetLayer()Returns the layer of the provider.java.util.Map<java.lang.String,java.lang.String>getProperties()Returns the properties of the provider.voidsetAppContext(java.lang.String appContext)Sets the application context of the provider.voidsetClassName(java.lang.String className)Sets the class name of the provider.voidsetDescription(java.lang.String description)Sets the description of the provider.voidsetLayer(java.lang.String layer)Sets the layer of the provider.voidsetProperty(java.lang.String name, java.lang.String value)Used by IntrospectionUtils via reflection.
-
-
-
Method Detail
-
getClassName
public java.lang.String getClassName()
Returns the class name of the provider.- Returns:
- the class name
-
setClassName
public void setClassName(java.lang.String className)
Sets the class name of the provider.- Parameters:
className- the class name
-
getLayer
public java.lang.String getLayer()
Returns the layer of the provider.- Returns:
- the layer
-
setLayer
public void setLayer(java.lang.String layer)
Sets the layer of the provider.- Parameters:
layer- the layer
-
getAppContext
public java.lang.String getAppContext()
Returns the application context of the provider.- Returns:
- the application context
-
setAppContext
public void setAppContext(java.lang.String appContext)
Sets the application context of the provider.- Parameters:
appContext- the application context
-
getDescription
public java.lang.String getDescription()
Returns the description of the provider.- Returns:
- the description
-
setDescription
public void setDescription(java.lang.String description)
Sets the description of the provider.- Parameters:
description- the description
-
addProperty
public void addProperty(PersistentProviderRegistrations.Property property)
Adds a property to the provider.- Parameters:
property- the property to add
-
setProperty
public void setProperty(java.lang.String name, java.lang.String value)Used by IntrospectionUtils via reflection.- Parameters:
name- - the name of the property to set on this objectvalue- - the value to set- See Also:
addProperty(String, String)
-
getProperties
public java.util.Map<java.lang.String,java.lang.String> getProperties()
Returns the properties of the provider.- Returns:
- the properties
-
-