blob: 62f559fccbd1717374e73d6753061e713345ed28 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 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.wst.ws.internal.explorer.platform.uddi.datamodel;
import org.eclipse.wst.ws.internal.datamodel.*;
import org.uddi4j.datatype.service.BusinessService;
public class ServiceElement extends AbstractUDDIElement
{
private BusinessService bs_;
public ServiceElement(BusinessService bs,Model model)
{
super(bs.getDefaultNameString(),model);
setKey(bs.getServiceKey());
bs_ = bs;
}
public final BusinessService getBusinessService()
{
return bs_;
}
}