Repository: beam Updated Branches: refs/heads/master e4f1a4bdb -> ddc75958c
Make distinguished URNs public These URNs are in flux and will be relocated to some final good location as the Runner API and Fn API develop. For now, this change just makes them public in the place where they currently are defined. Project: http://git-wip-us.apache.org/repos/asf/beam/repo Commit: http://git-wip-us.apache.org/repos/asf/beam/commit/94814e88 Tree: http://git-wip-us.apache.org/repos/asf/beam/tree/94814e88 Diff: http://git-wip-us.apache.org/repos/asf/beam/diff/94814e88 Branch: refs/heads/master Commit: 94814e88f6d6737f389c7b8e8727d3a4a78bba54 Parents: 5e1be9f Author: Kenneth Knowles <[email protected]> Authored: Wed Mar 22 20:33:24 2017 -0700 Committer: Kenneth Knowles <[email protected]> Committed: Wed Mar 22 20:33:29 2017 -0700 ---------------------------------------------------------------------- .../main/java/org/apache/beam/sdk/util/WindowingStrategies.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/beam/blob/94814e88/sdks/java/core/src/main/java/org/apache/beam/sdk/util/WindowingStrategies.java ---------------------------------------------------------------------- diff --git a/sdks/java/core/src/main/java/org/apache/beam/sdk/util/WindowingStrategies.java b/sdks/java/core/src/main/java/org/apache/beam/sdk/util/WindowingStrategies.java index 40f2a66..59ef8de 100644 --- a/sdks/java/core/src/main/java/org/apache/beam/sdk/util/WindowingStrategies.java +++ b/sdks/java/core/src/main/java/org/apache/beam/sdk/util/WindowingStrategies.java @@ -128,11 +128,11 @@ public class WindowingStrategies implements Serializable { // This URN says that the coder is just a UDF blob the indicated SDK understands // TODO: standardize such things - private static final String CUSTOM_CODER_URN = "urn:beam:coders:javasdk:0.1"; + public static final String CUSTOM_CODER_URN = "urn:beam:coders:javasdk:0.1"; // This URN says that the WindowFn is just a UDF blob the indicated SDK understands // TODO: standardize such things - private static final String CUSTOM_WINDOWFN_URN = "urn:beam:windowfn:javasdk:0.1"; + public static final String CUSTOM_WINDOWFN_URN = "urn:beam:windowfn:javasdk:0.1"; private static final ObjectMapper OBJECT_MAPPER = new ObjectMapper();
