Class PKIXResourceValidationInfoFactoryBean
- 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.PKIXResourceValidationInfoFactoryBean
-
- All Implemented Interfaces:
Aware,BeanClassLoaderAware,BeanFactoryAware,DisposableBean,FactoryBean<BasicPKIXValidationInformation>,InitializingBean
public class PKIXResourceValidationInfoFactoryBean extends AbstractBasicPKIXValidationInfoFactoryBean
File system specific bean for PKIXValidationInfo.
-
-
Field Summary
Fields Modifier and Type Field Description private List<Resource>certificateFilesThe file to be turned into the certificates.private List<Resource>crlFilesThe file to be turned into the crls.private org.slf4j.Loggerloglog.-
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 PKIXResourceValidationInfoFactoryBean()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected List<X509Certificate>getCertificates()Get the configured certificates.protected List<X509CRL>getCRLs()Get the configured CRL list.voidsetCertificates(List<Resource> certs)Set the file names which we will convert into certificates.voidsetCRLs(List<Resource> 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
-
-
-
-
Method Detail
-
setCertificates
public void setCertificates(@Nullable List<Resource> certs)Set the file names which we will convert into certificates.- Parameters:
certs- the file names.
-
setCRLs
public void setCRLs(@Nullable List<Resource> crls)Set the file names which we will convert into crls.- Parameters:
crls- the file names.
-
getCertificates
@Nullable protected List<X509Certificate> getCertificates()
Get the configured certificates.- Specified by:
getCertificatesin classAbstractBasicPKIXValidationInfoFactoryBean- Returns:
- the certificates null
-
getCRLs
@Nullable protected List<X509CRL> getCRLs()
Get the configured CRL list.- Specified by:
getCRLsin classAbstractBasicPKIXValidationInfoFactoryBean- Returns:
- the crls or null
-
-