-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use constants for rune property names (#926)
* use constants for rune property names * rename constants
- Loading branch information
Showing
5 changed files
with
56 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
rosetta-runtime/src/main/java/com/rosetta/model/lib/RuneNameConstants.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package com.rosetta.model.lib; | ||
|
||
public class RuneNameConstants { | ||
private RuneNameConstants() {} | ||
|
||
public static final String DATA = "@data"; | ||
public static final String REFERENCE = "@ref"; | ||
public static final String EXTERNAL_REFERENCE = "@ref:external"; | ||
public static final String SCOPED_REFERENCE = "@ref:scoped"; | ||
public static final String META = "meta"; | ||
public static final String SCHEME = "@scheme"; | ||
public static final String KEY = "@key"; | ||
public static final String EXTERNAL_KEY = "@key:external"; | ||
public static final String SCOPED_KEY = "@key:scoped"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters