blob: 6de4c658fc76a4ee450b9a684e7395a497869721 [file] [log] [blame]
/***************************************************************************************************
* Copyright (c) 2003, 2004 IBM Corporation 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: IBM Corporation - initial API and implementation
**************************************************************************************************/
package org.eclipse.jst.j2ee.jca.internal.deployables;
import org.eclipse.jst.j2ee.internal.deployables.J2EEDeployableFactory;
import org.eclipse.jst.j2ee.internal.project.IConnectorNatureConstants;
import org.eclipse.jst.j2ee.internal.project.J2EEModuleNature;
import org.eclipse.jst.j2ee.internal.project.J2EENature;
import org.eclipse.wst.server.core.model.IProjectModule;
public class Connector1_3DeployableFactory extends J2EEDeployableFactory {
private static final String ID = "com.ibm.wtp.server.j2ee.connector13"; //$NON-NLS-1$
/**
* Constructor for Connector1_3DeployableFactory
*/
public Connector1_3DeployableFactory() {
super();
}
/*
* @see DeployableProjectFactoryDelegate#getFactoryID()
*/
public String getFactoryId() {
return ID;
}
/*
* @see J2EEDeployableFactory#getNatureID()
*/
public String getNatureID() {
return IConnectorNatureConstants.CONNECTOR_NATURE_ID;
}
/*
* @see J2EEDeployableFactory#createDeployable(J2EENature)
*/
public IProjectModule createModule(J2EENature nature) {
return new ConnectorDeployable((J2EEModuleNature) nature, ID);
}
}