Uses of Interface
org.hardtokenmgmt.core.token.IToken

Packages that use IToken
org.hardtokenmgmt.core.logon   
org.hardtokenmgmt.core.token   
org.hardtokenmgmt.core.ui   
org.hardtokenmgmt.core.util   
org.hardtokenmgmt.tools.tokentest   
org.hardtokenmgmt.ui.activatecard   
org.hardtokenmgmt.ui.subview   
 

Uses of IToken in org.hardtokenmgmt.core.logon
 

Methods in org.hardtokenmgmt.core.logon with parameters of type IToken
static void Pkcs11LogonManager.initializeHTTPSContext(IToken token, java.lang.String pIN, ILogonGUICallback logonGUICallback)
          A ToLiMa specific SSL context manager, using the specially written ToLiMa trust and key managers.
 

Uses of IToken in org.hardtokenmgmt.core.token
 

Classes in org.hardtokenmgmt.core.token that implement IToken
 class BaseToken
          A Base Token implementation that contains generic operations on token that can be reused by most token implementations
 class NetIdPrimeEIDLogonOnlyToken
          Implementation specific token class for PrimeCard (Siemens CardOS 4.3) cards with manly logon support.
 class NetIdSetCos431Token
          Implementation specific token class for SetCos 431 Instant eID cards using NetId pkcs11
 class NetIdSetCos441Token
          Implementation specific token class for Setec 32K SetCos 441 Instant eID cards
 class SetCos431InstantEIDToken
          A Base Token implementation that contains generic operations on token that can be reused by most token implementations
 class SetCos441InstantEIDToken
          Implementation specific token class for Setec 32K SetCos 441 Instant eID cards
 class SyncronizedToken
          Special wrapper class used to make the calls to syncronized and making sure only one thread at the time calls the PKCS11 module This class is returned by the TokenManager.
 

Methods in org.hardtokenmgmt.core.token that return IToken
 IToken TokenManager.getToken(iaik.pkcs.pkcs11.Slot slot)
          Method that returns the the IToken implementation for the token inserted in the selected slot.
 IToken SyncronizedToken.getWrappedToken()
           
 

Methods in org.hardtokenmgmt.core.token with parameters of type IToken
 java.security.cert.X509Certificate ILogonCertificateSelector.getLogonCertificate(IToken token)
          Main method that should return the certificate supposed to be used for logon or null if no admin certificate could be found.
 java.security.cert.X509Certificate DefaultLogonCertificateSelector.getLogonCertificate(IToken token)
          Method fetching the first certificate with 'digital signature' and the given issuer in the setting token.defaultlogoncertselector protected by the basic pin.
 

Uses of IToken in org.hardtokenmgmt.core.ui
 

Methods in org.hardtokenmgmt.core.ui that return IToken
protected  IToken BaseController.getProcessableToken()
          Help method returning the first processable token Should only be used by controllers only supporting on processable token
 

Uses of IToken in org.hardtokenmgmt.core.util
 

Methods in org.hardtokenmgmt.core.util with parameters of type IToken
static java.security.cert.X509Certificate[] TokenTools.getCertificates(IToken token)
           
static java.lang.String TokenTools.getDataFromToken(IToken token, int dataType)
           
static boolean DetermineCardStatus.isCardEmpty(IToken token)
          Method determining if a card is empty. i.e doesn't have any certificates
static boolean DetermineCardStatus.isCardLocked(IToken processableToken, boolean onlyBasicPIN)
          Method used to determine if a card is locked or not, onlyBasicPIN flag indicates that inly the basic PIN should be checked.
 

Uses of IToken in org.hardtokenmgmt.tools.tokentest
 

Methods in org.hardtokenmgmt.tools.tokentest with parameters of type IToken
 boolean NetIdSetCos441TokenTester.runTests(IToken token)
           
 boolean ITokenTester.runTests(IToken token)
          Method used to perform tests of the token, should send feed back of the tests to the given print stream.
 

Uses of IToken in org.hardtokenmgmt.ui.activatecard
 

Methods in org.hardtokenmgmt.ui.activatecard with parameters of type IToken
 java.security.cert.X509Certificate DefaultActivateCardCertSelector.getActivationCertificate(IToken token)
           
 java.security.cert.X509Certificate ActivateCardCertSelector.getActivationCertificate(IToken token)
          Method that should return the certificate on the token that should be used for republishing in EJBCA.
 

Uses of IToken in org.hardtokenmgmt.ui.subview
 

Constructors in org.hardtokenmgmt.ui.subview with parameters of type IToken
CardViewVO(IToken tokenData, java.lang.String serialNumber)