Github user meiercaleb commented on a diff in the pull request:
https://github.com/apache/incubator-rya/pull/240#discussion_r145810046
--- Diff:
extras/rya.pcj.fluo/pcj.fluo.app/src/main/java/org/apache/rya/indexing/pcj/fluo/app/query/FilterMetadata.java
---
@@ -221,6 +228,20 @@ public Builder setChildNodeId(@Nullable final String
childNodeId) {
public String getChildNodeId() {
return childNodeId;
}
+
+ /**
+ * Sets the Aggregation State for this Filter node.
+ * @param state - Aggregation State indicating current value of
Aggregation
+ * @return This builder so that method invocations may be chained.
+ */
+ public Builder setStateMetadata(CommonNodeMetadataImpl state) {
+ this.state = state;
+ return this;
+ }
+
+ public Optional<CommonNodeMetadataImpl> getStateMetadata() {
--- End diff --
Done
---