source: ether_statistics/service/interface/com/ether/EtherService.java

Last change on this file was 667, checked in by vmipsl, 12 years ago

account BD

File size: 358 bytes
Line 
1package com.ether;
2
3import com.ether.account.Account;
4import org.jetbrains.annotations.NotNull;
5import org.jetbrains.annotations.Nullable;
6
7/**
8 * @author vmipsl
9 * @date 12 nov. 2012
10 */
11public interface EtherService
12        extends Service
13{
14    @Nullable
15    Account getAccountByLogin( @NotNull final String login )
16            throws ServiceException;
17}
Note: See TracBrowser for help on using the repository browser.