Skip to content

Instantly share code, notes, and snippets.

@kopax
Created April 9, 2017 20:23
Show Gist options
  • Save kopax/3cc1cc5a8e94e8890fa39000d4a8dc54 to your computer and use it in GitHub Desktop.
Save kopax/3cc1cc5a8e94e8890fa39000d4a8dc54 to your computer and use it in GitHub Desktop.

Revisions

  1. kopax created this gist Apr 9, 2017.
    15 changes: 15 additions & 0 deletions ManagerDetails.java
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,15 @@
    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);

    }