Package com.trifork.riak.RPB.RpbLink

Examples of com.trifork.riak.RPB.RpbLink.Builder


  public ByteString getTag() {
    return tag;
  }

  public RpbLink build() {
    Builder b = RpbLink.newBuilder();
   
    if (bucket != null)
      b.setBucket(bucket);
   
    if (key != null)
      b.setKey(key);
   
    if (tag != null)
      b.setTag(tag);

    return b.build();
  }
View Full Code Here

TOP

Related Classes of com.trifork.riak.RPB.RpbLink.Builder

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.