blob: 3181fb6c1686b17526fd16efb0bab726bb2a8dae [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 transaction type values of an enterprise bean.
*/
public enum TransactionType {
/**
* Represents the <code>Container</code> transaction type.
*/
CONTAINER,
/**
* Represents the <code>Bean</code> transaction type.
*/
BEAN;
}