Examples of ProblemImpl


Examples of org.apache.tuscany.sca.assembly.builder.impl.ProblemImpl

     * @param message
     * @param binding
     * @param parameters
     */
    private void fatal(String message, Interface interfaze, String... messageParameters) {
        Problem problem = new ProblemImpl(this.getClass().getName(), "wsdlgen-validation-messages", Severity.ERROR, interfaze, message, (Object[])messageParameters);
        throw new WSDLGenerationException(problem.toString(), null, problem);
    }
View Full Code Here

Examples of org.apache.tuscany.sca.assembly.builder.impl.ProblemImpl

                }
            }
           
            if (!resolved) {
                // Record import resolution issue
                monitor.problem(new ProblemImpl(Severity.WARNING, "Unresolved import", import_));
            }
        }
    }
View Full Code Here

Examples of org.apache.tuscany.sca.assembly.builder.impl.ProblemImpl

     * @param model
     */
    private void warning(String message, Object model, Object... messageParameters) {
        if (monitor != null) {
            Problem problem =
                new ProblemImpl(this.getClass().getName(), "binding-hessian-validation-messages", Severity.WARNING,
                                model, message, (Object[])messageParameters);
            monitor.problem(problem);
        }
    }
View Full Code Here

Examples of org.apache.tuscany.sca.assembly.builder.impl.ProblemImpl

     * @param model
     */
    private void error(String message, Object model, Object... messageParameters) {
        if (monitor != null) {
            Problem problem =
                new ProblemImpl(this.getClass().getName(), "binding-hessian-validation-messages", Severity.ERROR,
                                model, message, (Object[])messageParameters);
            monitor.problem(problem);
        }
    }
View Full Code Here

Examples of org.apache.tuscany.sca.monitor.impl.ProblemImpl

     * @param model
     */
    private void error(Monitor monitor, String message, Object model, Object... messageParameters) {
        if (monitor != null) {
            Problem problem =
                new ProblemImpl(this.getClass().getName(), "databinding-sdo-validation-messages", Severity.ERROR,
                                message, model, message, (Object[])messageParameters);
            monitor.problem(problem);
        }
    }
View Full Code Here

Examples of org.apache.tuscany.sca.monitor.impl.ProblemImpl

      * @param message
      * @param model
      */
    private void error(Monitor monitor, String message, Object model, Exception ex) {
        if (monitor != null) {
          Problem problem = new ProblemImpl(this.getClass().getName(), "databinding-sdo-validation-messages", Severity.ERROR, message,model, message, ex);
            monitor.problem(problem);
        }       
    }
View Full Code Here

Examples of org.apache.tuscany.sca.monitor.impl.ProblemImpl

     * @param message
     * @param model
    */
    private void error(String message, Object model, Exception ex) {
        if (monitor != null) {
            Problem problem = new ProblemImpl(this.getClass().getName(), "web-javascript-validation-messages", Severity.ERROR, model, message, ex);
            monitor.problem(problem);
        }       
    }
View Full Code Here

Examples of org.apache.tuscany.sca.monitor.impl.ProblemImpl

     * @param message
     * @param model
    */
    private void error(String message, Object model, Exception ex) {
        if (monitor != null) {
            Problem problem = new ProblemImpl(this.getClass().getName(), "web-javascript-validation-messages", Severity.ERROR, model, message, ex);
            monitor.problem(problem);
        }       
    }
View Full Code Here

Examples of org.apache.tuscany.sca.monitor.impl.ProblemImpl

     * @param message
     * @param model
     */
     private void error(String message, Object model, Object... messageParameters) {
       if (monitor != null) {
          Problem problem = new ProblemImpl(this.getClass().getName(), "contribution-resource-validation-messages", Severity.ERROR, model, message, (Object[])messageParameters);
          monitor.problem(problem);
       }
     }
View Full Code Here

Examples of org.apache.tuscany.sca.monitor.impl.ProblemImpl

      * @param message
      * @param model
      */
     private void error(String message, Object model, Exception ex) {
         if (monitor != null) {
             Problem problem = new ProblemImpl(this.getClass().getName(), "contribution-resource-validation-messages", Severity.ERROR, model, message, ex);
             monitor.problem(problem);
         }
     }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.