001/*
002 *  Licensed to the Apache Software Foundation (ASF) under one
003 *  or more contributor license agreements.  See the NOTICE file
004 *  distributed with this work for additional information
005 *  regarding copyright ownership.  The ASF licenses this file
006 *  to you under the Apache License, Version 2.0 (the
007 *  "License"); you may not use this file except in compliance
008 *  with the License.  You may obtain a copy of the License at
009 *  
010 *    http://www.apache.org/licenses/LICENSE-2.0
011 *  
012 *  Unless required by applicable law or agreed to in writing,
013 *  software distributed under the License is distributed on an
014 *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
015 *  KIND, either express or implied.  See the License for the
016 *  specific language governing permissions and limitations
017 *  under the License. 
018 *  
019 */
020package org.apache.directory.shared.kerberos.codec.ticket;
021
022
023import java.nio.ByteBuffer;
024
025import org.apache.directory.api.asn1.ber.AbstractContainer;
026import org.apache.directory.shared.kerberos.messages.Ticket;
027
028
029/**
030 * The Ticket container stores the ticket decoded by the Asn1Decoder.
031 * When dealing with an incoding PDU, we will obtain a KerberosMessage in the
032 * container.
033 * 
034 * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
035 */
036public class TicketContainer extends AbstractContainer
037{
038    /** The ticket */
039    private Ticket ticket;
040
041
042    /**
043     * Creates a new TicketContainer object. We will store one grammars,
044     * it's enough ...
045     * @param stream The stream containing the data to decode
046     */
047    public TicketContainer( ByteBuffer stream )
048    {
049        super( stream );
050        setGrammar( TicketGrammar.getInstance() );
051        setTransition( TicketStatesEnum.START_STATE );
052    }
053
054
055    /**
056     * @return Returns the Ticket.
057     */
058    public Ticket getTicket()
059    {
060        return ticket;
061    }
062
063
064    /**
065     * Set a Ticket into the container. It will be completed by the
066     * KerberosDecoder.
067     * 
068     * @param ticket The ticket to set.
069     */
070    public void setTicket( Ticket ticket )
071    {
072        this.ticket = ticket;
073    }
074}