Skip to content

Commit

Permalink
This closes apache#2299: Make distinguished URNs public
Browse files Browse the repository at this point in the history
  • Loading branch information
kennknowles committed Mar 23, 2017
2 parents e4f1a4b + 94814e8 commit ddc7595
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 ddc7595

Please sign in to comment.