150151152153154155156157158
public void process() throws ToolException { } public void validateWSDL() throws ToolException { if (env.validateWSDL()) { WSDL11Validator validator = new WSDL11Validator(this.wsdlDefinition, this.env); validator.isValid(); } }
153154155156157158159160161
197198199200201202203
System.err.println("Parsing schema warning " + exception.toString()); } } public boolean validate(final Definition def, ToolContext context, Bus bus) throws ToolException { return new WSDL11Validator(def, context, bus).isValid(); }
196197198199200201202
} public boolean validate(final Definition def) throws ToolException { return new WSDL11Validator(def, context, bus).isValid(); }
195196197198199200201
198199200201202203204
return wsdlReader; } public boolean validate(Definition def) throws ToolException { return new WSDL11Validator(def, context).isValid(); }
121122123124125126127128129