netty: expose methods of ProtocolNegotiationEvent through accessor

This commit is contained in:
Carl Mastrangelo 2019-03-06 10:59:41 -08:00 committed by GitHub
parent b0bbd7537b
commit 07d7b99e31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 59 additions and 6 deletions

View File

@ -0,0 +1,51 @@
/*
* Copyright 2019 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.netty;
import io.grpc.Attributes;
import io.grpc.InternalChannelz.Security;
import javax.annotation.Nullable;
/**
* Internal accessor for {@link ProtocolNegotiationEvent}.
*/
public final class InternalProtocolNegotiationEvent {
private InternalProtocolNegotiationEvent() {}
public static ProtocolNegotiationEvent getDefault() {
return ProtocolNegotiationEvent.DEFAULT;
}
public static ProtocolNegotiationEvent withAttributes(
ProtocolNegotiationEvent event, Attributes attributes) {
return event.withAttributes(attributes);
}
public static ProtocolNegotiationEvent withSecurity(
ProtocolNegotiationEvent event, @Nullable Security security) {
return event.withSecurity(security);
}
public static Attributes getAttributes(ProtocolNegotiationEvent event) {
return event.getAttributes();
}
@Nullable
public static Security getSecurity(ProtocolNegotiationEvent event) {
return event.getSecurity();
}
}

View File

@ -21,6 +21,7 @@ import static com.google.common.base.Preconditions.checkNotNull;
import com.google.common.base.MoreObjects;
import com.google.common.base.Objects;
import io.grpc.Attributes;
import io.grpc.Internal;
import io.grpc.InternalChannelz.Security;
import javax.annotation.CheckReturnValue;
import javax.annotation.Nullable;
@ -29,9 +30,10 @@ import javax.annotation.Nullable;
* Represents a completion of a protocol negotiation stage.
*/
@CheckReturnValue
final class ProtocolNegotiationEvent {
@Internal
public final class ProtocolNegotiationEvent {
public static final ProtocolNegotiationEvent DEFAULT =
static final ProtocolNegotiationEvent DEFAULT =
new ProtocolNegotiationEvent(Attributes.EMPTY, /*security=*/ null);
private final Attributes attributes;
@ -44,19 +46,19 @@ final class ProtocolNegotiationEvent {
}
@Nullable
public Security getSecurity() {
Security getSecurity() {
return security;
}
public Attributes getAttributes() {
Attributes getAttributes() {
return attributes;
}
public ProtocolNegotiationEvent withAttributes(Attributes attributes) {
ProtocolNegotiationEvent withAttributes(Attributes attributes) {
return new ProtocolNegotiationEvent(attributes, this.security);
}
public ProtocolNegotiationEvent withSecurity(@Nullable Security security) {
ProtocolNegotiationEvent withSecurity(@Nullable Security security) {
return new ProtocolNegotiationEvent(this.attributes, security);
}