blob: eb396b4c8a9db634b9cbd377210a019955b078a3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 SAP AG and others.
* 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:
* Kaloyan Raev, kaloyan.raev@sap.com - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.j2ee.ejb.internal.operations;
/**
* Enumerates the destination type values of a message-driven bean.
*/
public enum DestinationType {
/**
* Represents the <code>javax.jms.Queue</code> destination type.
*/
QUEUE,
/**
* Represents the <code>javax.jms.Topic</code> destination type.
*/
TOPIC;
}