-
Notifications
You must be signed in to change notification settings - Fork 285
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Yingjian Wu
committed
Jun 6, 2024
1 parent
f5f00f1
commit 70be9ef
Showing
5 changed files
with
99 additions
and
25 deletions.
There are no files selected for viewing
46 changes: 46 additions & 0 deletions
46
.../java/com/netflix/metacat/common/server/usermetadata/ParentChildRelMetadataConstants.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,46 @@ | ||
package com.netflix.metacat.common.server.usermetadata; | ||
|
||
/** | ||
* ParentChildRelMetadataConstants. | ||
* | ||
* @author yingjianw | ||
*/ | ||
public final class ParentChildRelMetadataConstants { | ||
/** | ||
* Key specified in DefinitionMetadata that indicate the parent table name. | ||
*/ | ||
public static final String PARENTNAME = "root_table_name"; | ||
/** | ||
* During create, the key specified in DefinitionMetadata that indicates the parent table uuid. | ||
*/ | ||
public static final String PARENTUUID = "root_table_uuid"; | ||
/** | ||
* During create, the key specified in DefinitionMetadata that indicates the child table uuid. | ||
*/ | ||
public static final String CHILDUUID = "child_table_uuid"; | ||
|
||
/** | ||
* During create, the key specified in DefinitionMetadata that indicates relationType. | ||
*/ | ||
public static final String RELATIONTYPE = "relationType"; | ||
|
||
/** | ||
* During get, the key specified in DefinitionMetadata that indicates the parent child infos. | ||
*/ | ||
public static final String PARENTCHILDRELINFO = "parentChildRelationInfo"; | ||
|
||
/** | ||
* During get, the key specified in DefinitionMetadata[PARENTCHILDRELINFO] that indicates parent infos. | ||
*/ | ||
public static final String PARENTINFOS = "parentInfos"; | ||
|
||
/** | ||
* During get, the key specified in DefinitionMetadata[PARENTCHILDRELINFO] that indicates child infos. | ||
*/ | ||
public static final String CHILDINFOS = "childInfos"; | ||
|
||
private ParentChildRelMetadataConstants() { | ||
|
||
} | ||
|
||
} |
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
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