/************************************************************************* * * * EJBCA Community: The OpenSource Certificate Authority * * * * This software is free software; you can redistribute it and/or * * modify it under the terms of the GNU Lesser General Public * * License as published by the Free Software Foundation; either * * version 2.1 of the License, or any later version. * * * * See terms of license at gnu.org. * * * *************************************************************************/ package org.ejbca.core.model.hardtoken; /** * @version $Id: HardTokenConstants.java 22117 2015-10-29 10:53:42Z mikekushner $ */ public interface HardTokenConstants { public static final int TOKENTYPE_TURKISHEID = 3; //TurkishEIDProfile.TYPE_TURKISHEID; public static final int TOKENTYPE_SWEDISHEID = 1; //SwedishEIDProfile.TYPE_SWEDISHEID; public static final int TOKENTYPE_ENHANCEDEID = 2; //EnhancedEIDProfile.TYPE_ENHANCEDEID; public static final String LABEL_REGULARCARD = "LABEL_REGULARCARD"; //HardToken.LABEL_REGULARCARD; public static final String LABEL_TEMPORARYCARD = "LABEL_TEMPORARYCARD"; //HardToken.LABEL_TEMPORARYCARD; public static final String LABEL_PROJECTCARD = "LABEL_PROJECTCARD"; //HardToken.LABEL_PROJECTCARD; public static final int PINTYPE_BASIC = 1; public static final int PINTYPE_SIGNATURE = 2; public static final int REQUESTTYPE_PKCS10_REQUEST = 1; public static final int REQUESTTYPE_KEYSTORE_REQUEST = 2; public static final int RESPONSETYPE_CERTIFICATE_RESPONSE = 1; public static final int RESPONSETYPE_KEYSTORE_RESPONSE = 2; public static final String TOKENTYPE_PKCS12 = "PKCS12"; }