Checks if the ServerCall contains ALTS information. @param call the ServerCall to check @return true, if the ServerCall contains ALTS information and false otherwise.
(ServerCall<?, ?> call)
| 73 | * @return true, if the {@link ServerCall} contains ALTS information and false otherwise. |
| 74 | */ |
| 75 | public static boolean check(ServerCall<?, ?> call) { |
| 76 | return check(call.getAttributes()); |
| 77 | } |
| 78 | |
| 79 | /** |
| 80 | * Checks if the {@link ClientCall} contains ALTS information. |