Created
April 9, 2017 20:23
-
-
Save kopax/3cc1cc5a8e94e8890fa39000d4a8dc54 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface ManagerDetails { | |
String getLogin(); | |
void setLogin(String login); | |
List<? extends Object> getRoleList(); | |
void setRoleList(List<? extends Object> roleList); | |
String getPassword(); | |
void setPassword(String password); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment