Examples of UuidDigest


Examples of com.getperka.flatpack.util.UuidDigest

  @Override
  protected UUID defaultUuid() {
    if (getEnclosingType() == null || getName() == null) {
      throw new IllegalStateException();
    }
    return new UuidDigest(getClass()).add(getEnclosingType()).add(name).digest();
  }
View Full Code Here

Examples of com.getperka.flatpack.util.UuidDigest

    return jsonKind.toString();
  }

  @Override
  protected UUID defaultUuid() {
    return new UuidDigest(getClass())
        .addStrings(enumValues)
        .add(hint == null ? null : hint.getValue())
        .add(jsonKind.name())
        .add(listElement)
        .add(mapKey)
View Full Code Here

Examples of com.getperka.flatpack.util.UuidDigest

    return sb.toString();
  }

  @Override
  protected UUID defaultUuid() {
    return new UuidDigest(getClass()).addEntities(path).digest();
  }
View Full Code Here

Examples of com.getperka.flatpack.util.UuidDigest

  @Override
  protected UUID defaultUuid() {
    if (method == null || path == null) {
      throw new IllegalStateException();
    }
    return new UuidDigest(getClass()).add(method).add(path).digest();
  }
View Full Code Here

Examples of com.getperka.flatpack.util.UuidDigest

    this.type = type;
  }

  @Override
  protected UUID defaultUuid() {
    return new UuidDigest(getClass()).add(type).add(docString).digest();
  }
View Full Code Here

Examples of com.getperka.flatpack.util.UuidDigest

  @Override
  protected UUID defaultUuid() {
    if (apiName == null) {
      throw new IllegalStateException();
    }
    return new UuidDigest(getClass()).add(apiName).digest();
  }
View Full Code Here

Examples of com.getperka.flatpack.util.UuidDigest

  @Override
  protected UUID defaultUuid() {
    if (endpoint == null || name == null) {
      throw new IllegalStateException();
    }
    return new UuidDigest(getClass()).add(endpoint).add(name).add(type).digest();
  }
View Full Code Here

Examples of com.getperka.flatpack.util.UuidDigest

  @Override
  protected UUID defaultUuid() {
    if (typeName == null) {
      throw new IllegalStateException();
    }
    return new UuidDigest(getClass()).add(typeName).digest();
  }
View Full Code Here

Examples of com.getperka.flatpack.util.UuidDigest

  @Override
  protected UUID defaultUuid() {
    if (getType() == null || getAction() == null) {
      throw new IllegalStateException();
    }
    return new UuidDigest(getClass()).add(type).add(action).digest();
  }
View Full Code Here

Examples of com.getperka.flatpack.util.UuidDigest

    return name + " " + paths;
  }

  @Override
  protected UUID defaultUuid() {
    return new UuidDigest(getClass())
        .add(description)
        .add(String.valueOf(globalSecurityGroup))
        .addEntities(paths)
        .add(name)
        .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.