io.grpc.alts.internal.TsiPeer Maven / Gradle / Ivy
/*
* Copyright 2018 The gRPC Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.grpc.alts.internal;
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import javax.annotation.Nonnull;
/** A set of peer properties. */
public final class TsiPeer {
private final List> properties;
public TsiPeer(List> properties) {
this.properties = Collections.unmodifiableList(properties);
}
public List> getProperties() {
return properties;
}
/** Get peer property. */
public Property> getProperty(String name) {
for (Property> property : properties) {
if (property.getName().equals(name)) {
return property;
}
}
return null;
}
@Override
public String toString() {
return new ArrayList<>(properties).toString();
}
/** A peer property. */
public abstract static class Property {
private final String name;
private final T value;
protected Property(@Nonnull String name, @Nonnull T value) {
this.name = name;
this.value = value;
}
public final T getValue() {
return value;
}
public final String getName() {
return name;
}
@Override
public String toString() {
return String.format("%s=%s", name, value);
}
}
/** 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) {
super(name, value);
}
}
/** A peer property corresponding to an unsigned 64-bit integer. */
public static final class UnsignedInt64Property extends Property {
public UnsignedInt64Property(@Nonnull String name, @Nonnull BigInteger value) {
super(name, value);
}
}
/** A peer property corresponding to a double. */
public static final class DoubleProperty extends Property {
public DoubleProperty(@Nonnull String name, @Nonnull Double value) {
super(name, value);
}
}
/** A peer property corresponding to a string. */
public static final class StringProperty extends Property {
public StringProperty(@Nonnull String name, @Nonnull String value) {
super(name, value);
}
}
/** A peer property corresponding to a list of peer properties. */
public static final class PropertyList extends Property>> {
public PropertyList(@Nonnull String name, @Nonnull List> value) {
super(name, value);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy