Package com.michelboudreau.alternator.validators

Examples of com.michelboudreau.alternator.validators.CreateTableRequestValidator


      throw new LimitExceededException("Cannot exceed 256 tables per account.");
    }

    // Validate data coming in
    // TODO: Look into how we're doing validation, maybe implement better solution
    CreateTableRequestValidator validator = new CreateTableRequestValidator();
    List<Error> errors = validator.validate(request);
    if (errors.size() != 0) {
      throw new AmazonServiceException(errors.toString());
    }

    // get information
View Full Code Here

TOP

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

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.