Package com.trifork.riak.RPB

Examples of com.trifork.riak.RPB.RpbBucketProps


  private Integer nValue;

  public void init(RpbGetBucketResp resp) {
    if (resp.hasProps()) {
     
      RpbBucketProps props = resp.getProps();
      if (props.hasAllowMult()) {
        allowMult = Boolean.valueOf(props.getAllowMult());
      }
      if (props.hasNVal()) {
        nValue = new Integer(props.getNVal());
      }
    }
  }
View Full Code Here

TOP

Related Classes of com.trifork.riak.RPB.RpbBucketProps

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.