Package com.michelboudreau.alternator.validators

Examples of com.michelboudreau.alternator.validators.QueryRequestValidator


        return AlternatorDBApiVersion2Mapper.MapV1ScanResultToV2(result, table);
  }

  public synchronized QueryResult query(QueryRequest request) {
    // Validate data coming in
    QueryRequestValidator validator = new QueryRequestValidator();
    List<Error> errors = validator.validate(request);
    if (errors.size() != 0) {
      throw createInternalServerException(errors);
    }

    // Check existence of table
View Full Code Here

TOP

Related Classes of com.michelboudreau.alternator.validators.QueryRequestValidator

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.