blob: b03ffa29ee803018902c0bf9340f2c726d223c27 [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;
import static org.eclipse.jst.j2ee.ejb.internal.operations.INewEnterpriseBeanClassDataModelProperties.TRANSACTION_TYPE;
import org.eclipse.jst.j2ee.internal.common.operations.CreateJavaEEArtifactTemplateModel;
import org.eclipse.wst.common.frameworks.datamodel.IDataModel;
public class CreateEnterpriseBeanTemplateModel extends
CreateJavaEEArtifactTemplateModel {
protected static final String ATT_MAPPED_NAME = "mappedName"; //$NON-NLS-1$
protected static final String QUOTATION_STRING = "\""; //$NON-NLS-1$
public CreateEnterpriseBeanTemplateModel(IDataModel dataModel) {
super(dataModel);
}
public boolean isContainerType() {
String transactionType = dataModel.getStringProperty(TRANSACTION_TYPE);
if (transactionType.equals(TransactionType.CONTAINER.toString()))
return true;
else if (transactionType.equals(TransactionType.BEAN.toString()))
return false;
else
throw new IllegalStateException("illegal transaction type: " + transactionType); //$NON-NLS-1$
}
}