package java.net.RTP.Packets;

import java.lang.*;

/**
*    This class encapsulates all the necessary parameters of a
*    RTCP SDES Packet that needs to be handed to the Application 
*    when a SDES Packet is received.
*/

public class RTCPSDESPacket
{
    /**
    *   The SDES Item contained in the RTCP SDES Packet
    *
    */
    public SDESItem SDESItem;
    
}