Github user meiercaleb commented on a diff in the pull request:
https://github.com/apache/incubator-rya/pull/240#discussion_r145809880
--- Diff:
extras/rya.pcj.fluo/pcj.fluo.app/src/main/java/org/apache/rya/indexing/pcj/fluo/app/query/ConstructQueryMetadata.java
---
@@ -199,13 +206,27 @@ public Builder setParentNodeId(String parentNodeId) {
this.parentNodeId = parentNodeId;
return this;
}
+
+ /**
+ * Sets the state metadata of this {@link ConstructQueryMetadata}.
+ * @param stateMetadata
+ * @return This builder so that method invocations may be chained.
+ */
+ public Builder setStateMetadata(CommonNodeMetadataImpl
stateMetadata) {
+ this.state = stateMetadata;
+ return this;
+ }
+
+ public Optional<CommonNodeMetadataImpl> getStateMetadata() {
--- End diff --
Done
---