Skip to content

Commit

Permalink
Make TestServiceFactory and TestServiceRpcFactory interfaces public (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
elisheva-qlogic authored and chingor13 committed Nov 29, 2018
1 parent e333f47 commit 6573662
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ private TestServiceImpl(TestServiceOptions options) {
}
}

private interface TestServiceFactory extends ServiceFactory<TestService, TestServiceOptions> {}
public interface TestServiceFactory extends ServiceFactory<TestService, TestServiceOptions> {}

private static class DefaultTestServiceFactory implements TestServiceFactory {
private static final TestServiceFactory INSTANCE = new DefaultTestServiceFactory();
Expand All @@ -191,7 +191,7 @@ public TestService create(TestServiceOptions options) {
}
}

private interface TestServiceRpcFactory
public interface TestServiceRpcFactory
extends ServiceRpcFactory<TestServiceOptions> {}

private static class DefaultTestServiceRpcFactory implements TestServiceRpcFactory {
Expand Down

0 comments on commit 6573662

Please sign in to comment.