blob: a9334ab5309d9331f6c2491742381cf4931cb4a6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.bpel.model.proxy;
import javax.xml.namespace.QName;
import org.eclipse.bpel.model.util.BPELProxyURI;
import org.eclipse.emf.common.util.URI;
import org.eclipse.wst.wsdl.WSDLPackage;
import org.eclipse.wst.wsdl.internal.impl.MessageImpl;
public class MessageProxy extends MessageImpl
{
private BPELProxyURI proxyURI;
public MessageProxy(URI baseURI, QName qname)
{
proxyURI = new BPELProxyURI(WSDLPackage.eINSTANCE.getMessage(), baseURI, qname);
}
@Override
public boolean eIsProxy()
{
return true;
}
@Override
public URI eProxyURI()
{
return proxyURI.getProxyURI();
}
// Override so you can ask a proxy for its qname
@Override
public QName getQName() {
return proxyURI.getQName();
}
}