Skip to content

Commit

Permalink
Javadoc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
snazy committed Aug 26, 2024
1 parent 7130a99 commit b59717e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1323,7 +1323,7 @@ public Map<String, String> getValidateResult() {
* @param entityId the entity id
* @param actions a set of operation actions: READ/WRITE/LIST/DELETE/ALL
* @param locations a set of locations to verify
* @return a Map of <location, validate result>, a validate result value looks like this
* @return a Map of {@code <location, validate result>}, a validate result value looks like this
* <pre>
* {
* "status" : "failure",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -855,7 +855,7 @@ public String serializeProperties(PolarisCallContext callCtx, Map<String, String
}

/**
* Given the serialized properties, deserialize those to a Map<String, String>
* Given the serialized properties, deserialize those to a {@code Map<String, String>}
*
* @param properties a JSON string representing the set of properties
* @return a Map of string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public static <T> T deserialize(PolarisCallContext callCtx, String text, Class<T
}

/**
* Given the serialized properties, deserialize those to a Map<String, String>
* Given the serialized properties, deserialize those to a {@code Map<String, String>}
*
* @param properties a JSON string representing the set of properties
* @return a Map of string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
* <pre>
* 1. locations that allows polaris to get access to
* 2. cloud identity info that a service principle can request access token to the locations
* </pre</>
* </pre>
*/
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME)
@JsonSubTypes({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ public abstract EnumMap<PolarisCredentialProperty, String> getSubscopedCreds(
*
* @param actions a set of operation actions to validate, like LIST/READ/DELETE/WRITE/ALL
* @param locations a set of locations to get access to
* @return A Map of string, representing the result of validation, the key value is <location,
* validate result>. A validate result looks like this
* @return A Map of string, representing the result of validation, the key value is {@code
* <location, validate result>}. A validate result looks like this
* <pre>
* {
* "status" : "failure",
Expand Down

0 comments on commit b59717e

Please sign in to comment.