blob: c2208e99b013c2a4ddca1c9030f36249ca6df2e8 [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
* https://www.eclipse.org/legal/epl-2.0/
*
* 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;
}