Package com.getperka.flatpack.util

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

Related Classes of com.getperka.flatpack.util.UuidDigest

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.