Interface RemoteUpdateService
-
- All Known Implementing Classes:
RemoteClientCardService,SmartCardHSMCardService
public interface RemoteUpdateServiceInterface to a remote update service- Author:
- asc
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcancel()Cancel pending requestvoidsetHttpURLConnectionFactory(HttpURLConnectionFactory factory)Set an HttpURLConnectionFactory which creates preconfigured HttpURLConnectionsvoidupdate(java.lang.String url, java.lang.String sessionId, RemoteNotificationListener notificationListener)Update the card by obtaining command APDUs from a remote administration server.
-
-
-
Method Detail
-
update
void update(java.lang.String url, java.lang.String sessionId, RemoteNotificationListener notificationListener) throws CardServiceExceptionUpdate the card by obtaining command APDUs from a remote administration server.- Parameters:
url- the url of the remote administration serversessionId- the session Id to be included as JSESSION cookie or nullnotificationListener- the listener receiving notifications from the server or null- Throws:
CardServiceException
-
cancel
void cancel()
Cancel pending request
-
setHttpURLConnectionFactory
void setHttpURLConnectionFactory(HttpURLConnectionFactory factory)
Set an HttpURLConnectionFactory which creates preconfigured HttpURLConnections- Parameters:
factory-
-
-