blob: 7e158a44652ea16899bd9bb4715892c0a24eb8ca [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
package org.apache.directory.shared.kerberos.codec.encAsRepPart;
import org.apache.directory.api.asn1.ber.grammar.AbstractGrammar;
import org.apache.directory.api.asn1.ber.grammar.Grammar;
import org.apache.directory.api.asn1.ber.grammar.GrammarTransition;
import org.apache.directory.shared.kerberos.KerberosConstants;
import org.apache.directory.shared.kerberos.codec.encAsRepPart.actions.StoreEncAsRepPart;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* This class implements the EncAsRepPart structure. All the actions are declared
* in this class. As it is a singleton, these declaration are only done once. If
* an action is to be added or modified, this is where the work is to be done !
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public final class EncAsRepPartGrammar extends AbstractGrammar<EncAsRepPartContainer>
{
/** The logger */
static final Logger LOG = LoggerFactory.getLogger( EncAsRepPartGrammar.class );
/** A speedup for logger */
static final boolean IS_DEBUG = LOG.isDebugEnabled();
/** The instance of grammar. EncAsRepPartGrammar is a singleton */
private static Grammar<EncAsRepPartContainer> instance = new EncAsRepPartGrammar();
/**
* Creates a new EncAsRepPartGrammar object.
*/
@SuppressWarnings("unchecked")
private EncAsRepPartGrammar()
{
setName( EncAsRepPartGrammar.class.getName() );
// Create the transitions table
super.transitions = new GrammarTransition[EncAsRepPartStatesEnum.LAST_ENC_AS_REP_PART_STATE.ordinal()][256];
// ============================================================================================
// EncAsRepPart
// ============================================================================================
// --------------------------------------------------------------------------------------------
// Transition from EncAsRepPart init to EncKDCRepPart
// --------------------------------------------------------------------------------------------
// EncASRepPart ::= [APPLICATION 25] EncKDCRepPart
super.transitions[EncAsRepPartStatesEnum.START_STATE.ordinal()][KerberosConstants.ENC_AS_REP_PART_TAG] =
new GrammarTransition<EncAsRepPartContainer>(
EncAsRepPartStatesEnum.START_STATE,
EncAsRepPartStatesEnum.ENC_AS_REP_PART_STATE,
KerberosConstants.ENC_AS_REP_PART_TAG,
new StoreEncAsRepPart() );
}
/**
* Get the instance of this grammar
*
* @return An instance on the EncAsRepPart Grammar
*/
public static Grammar<EncAsRepPartContainer> getInstance()
{
return instance;
}
}