@Override public List<User> getListByOperator(String operator) throws ServiceException { return service.getListByOperator(operator); }
@Override public User getByEmail(String email) throws ServiceException { logger.info("### User Service RPC Client: {}", "getByEmail"); return service.getByEmail(email); }
@Override public User get(long id) throws ServiceException { return service.get(id); }
@Override public void delete(User t) throws ServiceException { service.delete(t); }
@Override public void add(User t) throws ServiceException { service.add(t); }