Skip to content
Snippets Groups Projects
NeomediaServiceUtils.java 571 B
Newer Older
  • Learn to ignore specific revisions
  • /*
     * Jitsi, the OpenSource Java VoIP and Instant Messaging client.
     *
     * Distributable under LGPL license.
     * See terms of license at gnu.org.
     */
    package org.jitsi.impl.neomedia;
    
    import org.jitsi.service.libjitsi.*;
    
    /**
     *
     * @author Lyubomir Marinov
     */
    public class NeomediaServiceUtils
    {
        public static MediaServiceImpl getMediaServiceImpl()
        {
            return (MediaServiceImpl) LibJitsi.getMediaService();
        }
    
        /**
         * Prevents the initialization of <tt>NeomediaServiceUtils</tt> instances.
         */
        private NeomediaServiceUtils()
        {
        }
    }