Skip to content

Commit 60c3da9

Browse files
Refactor: Add Javadoc comments to meet Checkstyle build requirements (#1269)
Signed-off-by: Harsh Mehta <[email protected]>
1 parent 210c69e commit 60c3da9

File tree

1 file changed

+3
-0
lines changed
  • src/main/java/org/opensearch/flowframework/model

1 file changed

+3
-0
lines changed

src/main/java/org/opensearch/flowframework/model/Config.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,20 +106,23 @@ public static Config parse(XContentParser parser) throws IOException {
106106
}
107107

108108
/**
109+
* Gets the master key used for encryption.
109110
* @return the masterKey
110111
*/
111112
public String masterKey() {
112113
return masterKey;
113114
}
114115

115116
/**
117+
* Gets the creation time of the config.
116118
* @return the createTime
117119
*/
118120
public Instant createTime() {
119121
return createTime;
120122
}
121123

122124
/**
125+
* Gets the tenant ID associated with the config.
123126
* @return the tenantId
124127
*/
125128
public Object tenantId() {

0 commit comments

Comments
 (0)