Java Code Examples for io.grpc.internal.GrpcUtil#DEFAULT_PORT_SSL

The following examples show how to use io.grpc.internal.GrpcUtil#DEFAULT_PORT_SSL . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: OkHttpChannelBuilder.java    From grpc-nebula-java with Apache License 2.0 6 votes vote down vote up
@Override
protected Attributes getNameResolverParams() {
  int defaultPort;
  switch (negotiationType) {
    case PLAINTEXT:
      defaultPort = GrpcUtil.DEFAULT_PORT_PLAINTEXT;
      break;
    case TLS:
      defaultPort = GrpcUtil.DEFAULT_PORT_SSL;
      break;
    default:
      throw new AssertionError(negotiationType + " not handled");
  }
  return Attributes.newBuilder()
      .set(NameResolver.Factory.PARAMS_DEFAULT_PORT, defaultPort).build();
}
 
Example 2
Source File: NettyChannelBuilder.java    From grpc-nebula-java with Apache License 2.0 6 votes vote down vote up
@Override
@CheckReturnValue
protected Attributes getNameResolverParams() {
  int defaultPort;
  switch (negotiationType) {
    case PLAINTEXT:
    case PLAINTEXT_UPGRADE:
      defaultPort = GrpcUtil.DEFAULT_PORT_PLAINTEXT;
      break;
    case TLS:
      defaultPort = GrpcUtil.DEFAULT_PORT_SSL;
      break;
    default:
      throw new AssertionError(negotiationType + " not handled");
  }
  return Attributes.newBuilder()
      .set(NameResolver.Factory.PARAMS_DEFAULT_PORT, defaultPort).build();
}
 
Example 3
Source File: OkHttpChannelBuilder.java    From grpc-java with Apache License 2.0 5 votes vote down vote up
@Override
protected int getDefaultPort() {
  switch (negotiationType) {
    case PLAINTEXT:
      return GrpcUtil.DEFAULT_PORT_PLAINTEXT;
    case TLS:
      return GrpcUtil.DEFAULT_PORT_SSL;
    default:
      throw new AssertionError(negotiationType + " not handled");
  }
}
 
Example 4
Source File: NettyChannelBuilder.java    From grpc-java with Apache License 2.0 5 votes vote down vote up
@Override
@CheckReturnValue
protected int getDefaultPort() {
  switch (negotiationType) {
    case PLAINTEXT:
    case PLAINTEXT_UPGRADE:
      return GrpcUtil.DEFAULT_PORT_PLAINTEXT;
    case TLS:
      return GrpcUtil.DEFAULT_PORT_SSL;
    default:
      throw new AssertionError(negotiationType + " not handled");
  }
}