Skip to content

Instantly share code, notes, and snippets.

@kopax
Created April 9, 2017 20:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kopax/3cc1cc5a8e94e8890fa39000d4a8dc54 to your computer and use it in GitHub Desktop.
Save kopax/3cc1cc5a8e94e8890fa39000d4a8dc54 to your computer and use it in GitHub Desktop.
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