Package org.italiangrid.voms.store
Interface VOMSTrustStoreStatusListener
-
- All Known Implementing Classes:
NullListener
public interface VOMSTrustStoreStatusListenerThis interface used to notify interested listeners in status changes of a VOMS trust store.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidnotifyCertficateLookupEvent(java.lang.String dir)Informs that certificates are being looked for in the directory passed as argumentvoidnotifyCertificateLoadEvent(java.security.cert.X509Certificate cert, java.io.File f)Informs that a VOMS AA certificate has been loaded in the storevoidnotifyLSCLoadEvent(LSCInfo lsc, java.io.File f)Informs that VOMS LSC information has been loaded in the storevoidnotifyLSCLookupEvent(java.lang.String dir)Informs that VOMS LSC file information is being looked for in the directory passed as argument.
-
-
-
Method Detail
-
notifyCertficateLookupEvent
void notifyCertficateLookupEvent(java.lang.String dir)
Informs that certificates are being looked for in the directory passed as argument- Parameters:
dir- the directory where certificates are being looked for
-
notifyLSCLookupEvent
void notifyLSCLookupEvent(java.lang.String dir)
Informs that VOMS LSC file information is being looked for in the directory passed as argument.- Parameters:
dir- the directory where certificates are being looked for
-
notifyCertificateLoadEvent
void notifyCertificateLoadEvent(java.security.cert.X509Certificate cert, java.io.File f)Informs that a VOMS AA certificate has been loaded in the store- Parameters:
cert- the VOMS AA certificate loadedf- the file from which the certificate has been loaded
-
notifyLSCLoadEvent
void notifyLSCLoadEvent(LSCInfo lsc, java.io.File f)
Informs that VOMS LSC information has been loaded in the store- Parameters:
lsc- the loaded VOMS LSC informationf- the file from which the LSC information has been loaded
-
-