/* * JBoss, Home of Professional Open Source. * * See the LEGAL.txt file distributed with this work for information regarding copyright ownership and licensing. * * See the AUTHORS.txt file distributed with this work for a full listing of individual contributors. */ package org.teiid.designer.metamodels.webservice.aspects.validation.rules; import org.eclipse.core.runtime.IStatus; import org.eclipse.emf.ecore.EObject; import org.eclipse.xsd.XSDComplexTypeDefinition; import org.eclipse.xsd.XSDElementDeclaration; import org.eclipse.xsd.XSDSchema; import org.eclipse.xsd.XSDSimpleTypeDefinition; import org.teiid.core.designer.util.CoreArgCheck; import org.teiid.designer.core.validation.ObjectValidationRule; import org.teiid.designer.core.validation.ValidationContext; import org.teiid.designer.core.validation.ValidationProblem; import org.teiid.designer.core.validation.ValidationProblemImpl; import org.teiid.designer.core.validation.ValidationResult; import org.teiid.designer.core.validation.ValidationResultImpl; import org.teiid.designer.metamodels.webservice.Input; import org.teiid.designer.metamodels.webservice.Message; import org.teiid.designer.metamodels.webservice.WebServiceMetamodelPlugin; /** * GlobalXSDElementRule * * @since 8.0 */ public class GlobalSchemaReferenceRule implements ObjectValidationRule { /** * This rule validates that an XSD Element, Simple Type or Complex Type is a globally scoped referenced in a schema. * * @since 4.2 */ public GlobalSchemaReferenceRule() { super(); } /** * @see org.teiid.designer.core.validation.ObjectValidationRule#validate(org.eclipse.emf.ecore.EObject, * org.teiid.designer.core.validation.ValidationContext) * @since 4.2 */ @Override public void validate(final EObject eObject, final ValidationContext context) { CoreArgCheck.isInstanceOf(Message.class, eObject); CoreArgCheck.isNotNull(context); final Message message = (Message)eObject; // get the content element for the message final XSDElementDeclaration xsdElement = message.getContentElement(); // get the content type for the message final XSDSimpleTypeDefinition xsdSimpleType = message.getContentSimpleType(); // get the content type for the message final XSDComplexTypeDefinition xsdComplexType = message.getContentComplexType(); // create a validation result final ValidationResult result = new ValidationResultImpl(eObject); if (xsdElement != null && !(xsdElement.eContainer() instanceof XSDSchema)) { String msg = null; if (eObject instanceof Input) { msg = WebServiceMetamodelPlugin.Util.getString("GlobalSchemaReferenceRule.InputXSDElementIsNotGlobal"); //$NON-NLS-1$ } else { msg = WebServiceMetamodelPlugin.Util.getString("GlobalSchemaReferenceRule.OutputXSDElementIsNotGlobal"); //$NON-NLS-1$ } ValidationProblem problem = new ValidationProblemImpl(0, IStatus.ERROR, msg); result.addProblem(problem); } if (xsdSimpleType != null && !(xsdSimpleType.eContainer() instanceof XSDSchema)) { String msg = null; if (eObject instanceof Input) { msg = WebServiceMetamodelPlugin.Util.getString("GlobalSchemaReferenceRule.InputSimpleTypeIsNotGlobal"); //$NON-NLS-1$ } else { msg = WebServiceMetamodelPlugin.Util.getString("GlobalSchemaReferenceRule.OutputSimpleTypeIsNotGlobal"); //$NON-NLS-1$ } ValidationProblem problem = new ValidationProblemImpl(0, IStatus.ERROR, msg); result.addProblem(problem); } if (xsdComplexType != null && !(xsdComplexType.eContainer() instanceof XSDSchema)) { String msg = null; if (eObject instanceof Input) { msg = WebServiceMetamodelPlugin.Util.getString("GlobalSchemaReferenceRule.InputComplexTypeIsNotGlobal"); //$NON-NLS-1$ } else { msg = WebServiceMetamodelPlugin.Util.getString("GlobalSchemaReferenceRule.OutputComplexTypeIsNotGlobal"); //$NON-NLS-1$ } ValidationProblem problem = new ValidationProblemImpl(0, IStatus.ERROR, msg); result.addProblem(problem); } // add the results to the context context.addResult(result); } }