Package org.openscoring.common

Examples of org.openscoring.common.SchemaResponse


    return response;
  }

  static
  private SchemaResponse createSchemaResponse(ModelEvaluator<?> evaluator){
    SchemaResponse response = new SchemaResponse();
    response.setActiveFields(toValueList(evaluator.getActiveFields()));
    response.setGroupFields(toValueList(evaluator.getGroupFields()));
    response.setTargetFields(toValueList(evaluator.getTargetFields()));
    response.setOutputFields(toValueList(evaluator.getOutputFields()));

    return response;
  }
View Full Code Here

TOP

Related Classes of org.openscoring.common.SchemaResponse

Copyright © 2018 www.massapicom. 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.