File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed
grpc-spring-boot-starter/src/main/java/org/lognet/springboot/grpc Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 7
7
import java .lang .annotation .Target ;
8
8
9
9
import org .springframework .stereotype .Component ;
10
- import org .springframework .stereotype .Service ;
11
10
12
11
/**
13
12
* Created by jamessmith on 9/7/16.
Original file line number Diff line number Diff line change 1
1
package org .lognet .springboot .grpc ;
2
2
3
- import io .grpc .*;
3
+ import io .grpc .BindableService ;
4
+ import io .grpc .Server ;
5
+ import io .grpc .ServerBuilder ;
6
+ import io .grpc .ServerInterceptor ;
7
+ import io .grpc .ServerInterceptors ;
8
+ import io .grpc .ServerServiceDefinition ;
4
9
import io .grpc .health .v1 .HealthCheckResponse ;
5
10
import io .grpc .inprocess .InProcessServerBuilder ;
6
11
import io .grpc .netty .NettyServerBuilder ;
17
22
import org .springframework .core .type .StandardMethodMetadata ;
18
23
19
24
import java .lang .annotation .Annotation ;
20
- import java .util .*;
25
+ import java .util .Collection ;
26
+ import java .util .Collections ;
27
+ import java .util .List ;
28
+ import java .util .Map ;
29
+ import java .util .Optional ;
30
+ import java .util .Set ;
21
31
import java .util .concurrent .ConcurrentSkipListSet ;
22
32
import java .util .stream .Collectors ;
23
33
import java .util .stream .Stream ;
You can’t perform that action at this time.
0 commit comments