blob: e7902e6ee1ab4ba53406dd0d970c9d2236f38cd5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2006 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.wsdl.validation.internal;
import org.eclipse.wst.wsdl.validation.internal.exception.ValidateWSDLException;
import org.w3c.dom.Document;
/**
* An interface for a WSDL validator. This is the interface for a top level validator
* component such as a WSDL 1.1 validator, WSDL 1.2 validator or WS-I Basic Profile validator.
*/
public interface IWSDLValidator
{
/**
* Validate the file with the given name.
*
* @param domModel A DOM model of the file to be validated.
* @param valInfo The information for the validation that is being performed.
* @throws ValidateWSDLException
*/
public void validate(Document domModel, IValidationInfo valInfo) throws ValidateWSDLException;
}