| | |
| | | * |
| | | * |
| | | * Copyright 2006-2009 Sun Microsystems, Inc. |
| | | * Portions Copyright 2012 ForgeRock AS |
| | | */ |
| | | package org.opends.server.protocols.asn1; |
| | | |
| | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public void readStartExplicitTag() throws ASN1Exception |
| | | { |
| | | // From an implementation point of view, an explicit tag is equivalent to a |
| | | // sequence, as it is also a constructed type. |
| | | readStartSequence(); |
| | | } |
| | | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public void readStartSet() throws ASN1Exception |
| | | { |
| | | // From an implementation point of view, a set is equivalent to a |
| | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public void readEndExplicitTag() throws ASN1Exception |
| | | { |
| | | // From an implementation point of view, an explicit tag is equivalent to a |
| | | // sequence, as it is also a constructed type. |
| | | readEndSequence(); |
| | | } |
| | | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public void readEndSet() throws ASN1Exception |
| | | { |
| | | // From an implementation point of view, a set is equivalent to a |