blob: 67e2d97b72e454afa578fb35b49918a723b697ab [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.netbeans.modules.xml.wsdl.validator;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import org.netbeans.modules.xml.wsdl.model.WSDLModel;
import org.netbeans.modules.xml.wsdl.validator.visitor.WSDLSemanticsVisitor;
import org.netbeans.modules.xml.xam.Model;
import org.netbeans.modules.xml.xam.spi.Validation;
import org.netbeans.modules.xml.xam.spi.ValidationResult;
import org.netbeans.modules.xml.xam.spi.Validator;
import org.netbeans.modules.xml.xam.spi.Validation.ValidationType;
@org.openide.util.lookup.ServiceProvider(service=org.netbeans.modules.xml.xam.spi.Validator.class)
public class WSDLSemanticValidator implements Validator {
public String getName() {
return "WSDLSemanticValidator"; //NO I18N
}
public ValidationResult validate(Model model, Validation validation, ValidationType validationType) {
if (model instanceof WSDLModel) {
WSDLModel wsdlModel = (WSDLModel) model;
List<Model> validatedModels = new ArrayList<Model>();
if (validationType.equals(ValidationType.COMPLETE) ||
validationType.equals(ValidationType.PARTIAL)) {
if ( wsdlModel.getState() == Model.State.NOT_WELL_FORMED ){
return null;
}
WSDLSemanticsVisitor visitor = new WSDLSemanticsVisitor(this, validation, validatedModels);
wsdlModel.getDefinitions().accept(visitor);
validatedModels.add(model);
List<ResultItem> resultItems = visitor.getResultItems();
return new ValidationResult(resultItems, validatedModels);
}
}
return null;
}
}