Package org.italiangrid.voms.request
Interface VOMSServerInfoStoreListener
- All Known Implementing Classes:
NullListener
public interface VOMSServerInfoStoreListener
This interface is used to notify about events related to the load operations
of VOMSES server endpoint information.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
notifyNoValidVOMSESError
(List<String> searchedPaths) Informs that no valid VOMS information was found on the system.void
notifyVOMSESInformationLoaded
(String vomsesPath, VOMSServerInfo info) Informs that VOMSES information was succesfully loaded from a given pathvoid
notifyVOMSESlookup
(String vomsesPath) Informs that VOMSES is being search at the path passed as argument
-
Method Details
-
notifyNoValidVOMSESError
Informs that no valid VOMS information was found on the system.- Parameters:
searchedPaths
- the list of searched paths
-
notifyVOMSESlookup
Informs that VOMSES is being search at the path passed as argument- Parameters:
vomsesPath
- the path where VOMSES information are being looked for
-
notifyVOMSESInformationLoaded
Informs that VOMSES information was succesfully loaded from a given path- Parameters:
vomsesPath
- the path where VOMSES information was loaded frominfo
- theVOMSServerInfo
voms endpoint information
-