/******************************************************************************* * Copyright (c) 2010 SAP AG. * 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: * Emil Simeonov - initial API and implementation. * Dimitar Donchev - initial API and implementation. * Dimitar Tenev - initial API and implementation. * Nevena Manova - initial API and implementation. * Georgi Konstantinov - initial API and implementation. *******************************************************************************/ package org.eclipse.wst.sse.sieditor.model.validation.constraints.soap; import org.eclipse.core.runtime.IStatus; import org.eclipse.emf.validation.IValidationContext; import org.eclipse.emf.validation.model.ConstraintStatus; import org.eclipse.wst.wsdl.Binding; import org.eclipse.wst.wsdl.BindingFault; import org.eclipse.wst.wsdl.BindingInput; import org.eclipse.wst.wsdl.BindingOperation; import org.eclipse.wst.wsdl.BindingOutput; import org.eclipse.wst.wsdl.Port; import org.eclipse.wst.wsdl.WSDLElement; import org.eclipse.wst.wsdl.binding.soap.SOAPAddress; import org.eclipse.wst.wsdl.binding.soap.SOAPBinding; import org.eclipse.wst.wsdl.binding.soap.SOAPBody; import org.eclipse.wst.wsdl.binding.soap.SOAPFault; import org.eclipse.wst.wsdl.binding.soap.SOAPHeader; import org.eclipse.wst.wsdl.binding.soap.SOAPHeaderFault; import org.eclipse.wst.wsdl.binding.soap.SOAPOperation; import org.eclipse.wst.sse.sieditor.model.i18n.Messages; import org.eclipse.wst.sse.sieditor.model.validation.constraints.AbstractConstraint; public class SOAPElementLocation extends AbstractConstraint{ @Override protected IStatus doValidate(IValidationContext ctx) { WSDLElement target = (WSDLElement) ctx.getTarget(); WSDLElement parent = target.getContainer(); String errorMessage = null; if (parent instanceof Port && !(target instanceof SOAPAddress)) { errorMessage = Messages.SOAPElementLocation_0; } else if (parent instanceof Binding && !(target instanceof SOAPBinding)) { errorMessage = Messages.SOAPElementLocation_1; } else if (parent instanceof BindingOperation && !(target instanceof SOAPOperation)) { errorMessage = Messages.SOAPElementLocation_2; } else if ((parent instanceof BindingInput || parent instanceof BindingOutput) && !(target instanceof SOAPBody || target instanceof SOAPHeader || target instanceof SOAPHeaderFault)) { errorMessage = Messages.SOAPElementLocation_3; } else if (parent instanceof BindingFault && !(target instanceof SOAPFault)) { errorMessage = Messages.SOAPElementLocation_4; } if (errorMessage != null) { return ConstraintStatus.createStatus(ctx, target, null, errorMessage, target.getElement().getLocalName()); } return ConstraintStatus.createSuccessStatus(ctx, target, null); } @Override protected boolean shouldExecute(IValidationContext ctx) { return true; } }