Examples of DescribeTableRequestValidator


Examples of com.michelboudreau.alternator.validators.DescribeTableRequestValidator

        }
  }

  public synchronized DescribeTableResult describeTable(DescribeTableRequest request) throws InternalServerErrorException, ResourceNotFoundException {
    // Validate data coming in
    DescribeTableRequestValidator validator = new DescribeTableRequestValidator();
    List<Error> errors = validator.validate(request);
    if (errors.size() != 0) {
      throw new AmazonServiceException(errors.toString());
    }

    // get information
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.