How to use this abstract interface IContributorService ?
How to use this abstract interface IContributorService ?
when I code like this:
I got a NullPointerException , that is contributorService is null;
How to use the abstract interface IContributorService?
when I code like this:
IContributorService contributorService = (IContributorService) teamRepository.getClientLibrary(IContributorService.class);
IContributorHandle contributor_creator = contributorService.fetchContributorByUserId("wang");
I got a
How to use the abstract interface IContributorService?