|
34 | 34 | /** MessageAuditLogEntry records the handling of a Protobuf message by a service call. */
|
35 | 35 | @AutoValue
|
36 | 36 | public abstract class MessageAuditLogEntry extends AuditLogEntry {
|
37 |
| - /** Id used to identify the service call that the log entry is recording */ |
| 37 | + /** @return Id used to identify the service call that the log entry is recording */ |
38 | 38 | public abstract UUID getId();
|
39 | 39 |
|
40 |
| - /** The name of the service that was used to handle the service call. */ |
| 40 | + /** @return The name of the service that was used to handle the service call. */ |
41 | 41 | public abstract String getService();
|
42 | 42 |
|
43 |
| - /** The name of the method that was used to handle the service call. */ |
| 43 | + /** @return The name of the method that was used to handle the service call. */ |
44 | 44 | public abstract String getMethod();
|
45 | 45 |
|
46 |
| - /** The request Protobuf {@link Message} that was passed to the Service in the service call. */ |
| 46 | + /** |
| 47 | + * @return The request Protobuf {@link Message} that was passed to the Service in the service |
| 48 | + * call. |
| 49 | + */ |
47 | 50 | public abstract Message getRequest();
|
48 | 51 |
|
49 | 52 | /**
|
50 |
| - * The response Protobuf {@link Message} that was passed to the Service in the service call. May |
51 |
| - * be an {@link Empty} protobuf no request could be collected due to an error. |
| 53 | + * @return The response Protobuf {@link Message} that was passed to the Service in the service |
| 54 | + * call. May be an {@link Empty} protobuf no request could be collected due to an error. |
52 | 55 | */
|
53 | 56 | public abstract Message getResponse();
|
54 | 57 |
|
55 | 58 | /**
|
56 |
| - * The authenticated identity that was assumed during the handling of the service call. For |
57 |
| - * example, the user id or email that identifies the user making the call. Empty if the service |
58 |
| - * call is not authenticated. |
| 59 | + * @return The authenticated identity that was assumed during the handling of the service call. |
| 60 | + * For example, the user id or email that identifies the user making the call. Empty if the |
| 61 | + * service call is not authenticated. |
59 | 62 | */
|
60 | 63 | public abstract String getIdentity();
|
61 | 64 |
|
62 |
| - /** The result status code of the service call. */ |
| 65 | + /** @return The result status code of the service call. */ |
63 | 66 | public abstract Code getStatusCode();
|
64 | 67 |
|
65 | 68 | @AutoValue.Builder
|
|
0 commit comments