public GetRepositoryPolicyResult unmarshall(JsonUnmarshallerContext context) throws Exception {
    GetRepositoryPolicyResult getRepositoryPolicyResult = new GetRepositoryPolicyResult();

    int originalDepth = context.getCurrentDepth();
    String currentParentElement = context.getCurrentParentElement();
    int targetDepth = originalDepth + 1;

    JsonToken token = context.getCurrentToken();
    if (token == null) token = context.nextToken();
    if (token == VALUE_NULL) return null;

    while (true) {
      if (token == null) break;

      if (token == FIELD_NAME || token == START_OBJECT) {
        if (context.testExpression("registryId", targetDepth)) {
          context.nextToken();
          getRepositoryPolicyResult.setRegistryId(
              context.getUnmarshaller(String.class).unmarshall(context));
        }
        if (context.testExpression("repositoryName", targetDepth)) {
          context.nextToken();
          getRepositoryPolicyResult.setRepositoryName(
              context.getUnmarshaller(String.class).unmarshall(context));
        }
        if (context.testExpression("policyText", targetDepth)) {
          context.nextToken();
          getRepositoryPolicyResult.setPolicyText(
              context.getUnmarshaller(String.class).unmarshall(context));
        }
      } else if (token == END_ARRAY || token == END_OBJECT) {
        if (context.getLastParsedParentElement() == null
            || context.getLastParsedParentElement().equals(currentParentElement)) {
          if (context.getCurrentDepth() <= originalDepth) break;
        }
      }
      token = context.nextToken();
    }

    return getRepositoryPolicyResult;
  }
  @Override
  public boolean equals(Object obj) {
    if (this == obj) return true;
    if (obj == null) return false;

    if (obj instanceof GetRepositoryPolicyResult == false) return false;
    GetRepositoryPolicyResult other = (GetRepositoryPolicyResult) obj;
    if (other.getRegistryId() == null ^ this.getRegistryId() == null) return false;
    if (other.getRegistryId() != null
        && other.getRegistryId().equals(this.getRegistryId()) == false) return false;
    if (other.getRepositoryName() == null ^ this.getRepositoryName() == null) return false;
    if (other.getRepositoryName() != null
        && other.getRepositoryName().equals(this.getRepositoryName()) == false) return false;
    if (other.getPolicyText() == null ^ this.getPolicyText() == null) return false;
    if (other.getPolicyText() != null
        && other.getPolicyText().equals(this.getPolicyText()) == false) return false;
    return true;
  }