View Javadoc
1 /* 2 * Copyright (C) The PhoenixJMS Project. All rights reserved. 3 * 4 * This software is published under the terms of the Apache Software License 5 * version 1.1, a copy of which has been included with this distribution in 6 * the LICENSE file. 7 */ 8 package net.sf.phoenixjms.server; 9 10 /*** 11 * Base JMSServer interface. Currently it just defines the ROLE. 12 * @author Alexis Agahi <alag@users.sourceforge.net> 13 * @author J Aaron Farr 14 * @version 0.9.0 15 * @avalon.service version="1.0" 16 */ 17 public interface JMSServer 18 { 19 20 public static final String ROLE = JMSServer.class.getName(); 21 22 23 /*** @todo should we provide ways to get a JMS connection? */ 24 25 public String getProviderName(); 26 27 }

This page was automatically generated by Maven