/************************************************************************* * * * CERT-CVC: EAC 1.11 Card Verifiable Certificate Library * * * * 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.cvc; /** * Represents Access Rights regarding ePassport data groups DG3, DG4. * * @author Samuel Lidén Borell, PrimeKey Solutions AB * @version $Id: AccessRights.java 23378 2016-05-09 12:55:41Z netmackan $ */ public interface AccessRights { /** @return the encoded byte value */ byte[] getEncoded(); /** @see Enum#name() */ String name(); }