blob: a379220b24e588bd46478a5f5a6cc98036de4712 [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 session state type values of a session bean.
*
* @since 3.0
*/
public enum StateType {
/**
* Represents the <code>Stateless</code> session state type.
*
* @since 3.0
*/
STATELESS,
/**
* Represents the <code>Stateful</code> session state type.
*
* @since 3.0
*/
STATEFUL,
/**
* Represents the <code>Singleton</code> session state type.
*
* @since 3.2
*/
SINGLETON;
}