Skip to main content
summaryrefslogblamecommitdiffstats
blob: f5f0d2a8911af759d9fa6f318e9c17294180efee (plain) (tree)
1
2
                                                                            
                                                   
















                                                                            
                                                    















                                                               
/***************************************************************************
 * Copyright (c) 2004 - 2008 Eike Stepper, Germany.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *    Eike Stepper - initial API and implementation
 **************************************************************************/
package org.eclipse.net4j.jms.internal.admin.protocol;

import org.eclipse.net4j.jms.JMSAdminProtocolConstants;
import org.eclipse.net4j.signal.SignalProtocol;
import org.eclipse.net4j.signal.SignalReactor;

/**
 * @author Eike Stepper
 */
public class JMSAdminProtocol extends SignalProtocol
{
  public JMSAdminProtocol()
  {
  }

  public String getType()
  {
    return JMSAdminProtocolConstants.PROTOCOL_NAME;
  }

  @Override
  protected SignalReactor doCreateSignalReactor(short signalID)
  {
    return null;
  }
}

Back to the top