Examples of UuidDigest


Examples of com.getperka.flatpack.util.UuidDigest

    return operations.toString();
  }

  @Override
  protected UUID defaultUuid() {
    UuidDigest digest = new UuidDigest(getClass());
    for (Map.Entry<SecurityGroup, Set<SecurityAction>> entry : operations.entrySet()) {
      digest.add(entry.getKey());
      for (SecurityAction value : entry.getValue()) {
        digest.add(value);
      }
    }
    return digest.digest();
  }
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.