src/main/java/com/amazonaws/services/neptune/profiles/neptune_ml/common/parsing/ParseObject.java [27:38]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String parseObject() {
        if (json.has("object")) {
            JsonNode node = json.get("object");
            if (node.isTextual()) {
                return node.textValue();
            } else {
                throw error();
            }
        } else {
            return null;
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/amazonaws/services/neptune/profiles/neptune_ml/common/parsing/ParseSubject.java [27:38]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String parseSubject() {
        if (json.has("subject")) {
            JsonNode node = json.get("subject");
            if (node.isTextual()) {
                return node.textValue();
            } else {
                throw error();
            }
        } else {
            return null;
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



