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