Class PKIXInlineValidationInfoFactoryBean
java.lang.Object
org.springframework.beans.factory.config.AbstractFactoryBean<T>
net.shibboleth.ext.spring.factory.AbstractComponentAwareFactoryBean<BasicPKIXValidationInformation>
net.shibboleth.idp.profile.spring.relyingparty.security.trustengine.impl.AbstractBasicPKIXValidationInfoFactoryBean
net.shibboleth.idp.profile.spring.relyingparty.security.trustengine.impl.PKIXInlineValidationInfoFactoryBean
- All Implemented Interfaces:
Aware
,BeanClassLoaderAware
,BeanFactoryAware
,DisposableBean
,FactoryBean<BasicPKIXValidationInformation>
,InitializingBean
public class PKIXInlineValidationInfoFactoryBean extends AbstractBasicPKIXValidationInfoFactoryBean
File system specific bean for PKIXValidationInfo.
-
Field Summary
Fields Modifier and Type Field Description private List<String>
certificateFiles
The strings to be turned into the certificates.private List<String>
crlStrings
The strings to be turned into the crls.private org.slf4j.Logger
log
log.Fields inherited from class org.springframework.beans.factory.config.AbstractFactoryBean
logger
Fields inherited from interface org.springframework.beans.factory.FactoryBean
OBJECT_TYPE_ATTRIBUTE
-
Constructor Summary
Constructors Constructor Description PKIXInlineValidationInfoFactoryBean()
-
Method Summary
Modifier and Type Method Description protected List<X509Certificate>
getCertificates()
Get the configured certificates.protected List<X509CRL>
getCRLs()
Get the configured CRL list.void
setCertificates(List<String> certs)
Set the file names which we will convert into certificates.void
setCRLs(List<String> crls)
Set the file names which we will convert into crls.Methods inherited from class net.shibboleth.idp.profile.spring.relyingparty.security.trustengine.impl.AbstractBasicPKIXValidationInfoFactoryBean
doCreateInstance, getConfigDescription, getObjectType, getVerifyDepth, setConfigDescription, setVerifyDepth
Methods inherited from class net.shibboleth.ext.spring.factory.AbstractComponentAwareFactoryBean
createInstance, destroyInstance
Methods inherited from class org.springframework.beans.factory.config.AbstractFactoryBean
afterPropertiesSet, destroy, getBeanFactory, getBeanTypeConverter, getEarlySingletonInterfaces, getObject, isSingleton, setBeanClassLoader, setBeanFactory, setSingleton
-
Field Details
-
log
private org.slf4j.Logger loglog. -
certificateFiles
The strings to be turned into the certificates. -
crlStrings
The strings to be turned into the crls.
-
-
Constructor Details
-
PKIXInlineValidationInfoFactoryBean
public PKIXInlineValidationInfoFactoryBean()
-
-
Method Details
-
setCertificates
Set the file names which we will convert into certificates.- Parameters:
certs
- the file names.
-
setCRLs
Set the file names which we will convert into crls.- Parameters:
crls
- the file names.
-
getCertificates
Get the configured certificates.- Specified by:
getCertificates
in classAbstractBasicPKIXValidationInfoFactoryBean
- Returns:
- the certificates null
-
getCRLs
Get the configured CRL list.- Specified by:
getCRLs
in classAbstractBasicPKIXValidationInfoFactoryBean
- Returns:
- the crls or null
-