diff --git a/alts/src/main/java/io/grpc/alts/internal/TsiPeer.java b/alts/src/main/java/io/grpc/alts/internal/TsiPeer.java index 990cf0b9c0..01e3c821ad 100644 --- a/alts/src/main/java/io/grpc/alts/internal/TsiPeer.java +++ b/alts/src/main/java/io/grpc/alts/internal/TsiPeer.java @@ -73,6 +73,13 @@ public final class TsiPeer { } } + /** A peer property corresponding to a boolean. */ + public static final class BooleanProperty extends Property { + public BooleanProperty(@Nonnull String name, boolean value) { + super(name, value); + } + } + /** A peer property corresponding to a signed 64-bit integer. */ public static final class SignedInt64Property extends Property { public SignedInt64Property(@Nonnull String name, @Nonnull Long value) {