Skip to content

Commit

Permalink
Make distinguished URNs public
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
kennknowles committed Mar 23, 2017
1 parent 5e1be9f commit 94814e8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,11 +128,11 @@ public static RunnerApi.OutputTime toProto(OutputTimeFn<?> outputTimeFn) {

// 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();

Expand Down

0 comments on commit 94814e8

Please sign in to comment.