Skip to content

Commit

Permalink
Fixed clients implementations
Browse files Browse the repository at this point in the history
  • Loading branch information
car031 committed May 3, 2023
1 parent a03f2d1 commit 5d7f6fa
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,18 @@ public void logout(String sid) {
proxy.logout(sid);
}

@Override
public String loginPost(String username, String password) throws Exception {
return proxy.loginPost(username, password);
}

@Override
public String loginPostJSON(String username, String password) throws Exception {
return proxy.loginPostJSON(username, password);
}

@Override
public String getSid() {
return proxy.getSid();
}
}

@Override
public String loginForm(String username, String password) throws Exception {
return proxy.loginForm(username, password);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -123,4 +123,10 @@ public WSRight[] getGrantedUsers(String sid, long groupId) throws Authentication
public WSRight[] getGrantedGroups(String sid, long groupId) throws AuthenticationException, PermissionException, WebserviceException, PersistenceException {
return client.getGrantedGroups(sid, groupId);
}

@Override
public void addAttributeOption(String sid, long setId, String attribute, WSAttributeOption wsoption)
throws AuthenticationException, WebserviceException, PersistenceException {
client.addAttributeOption(sid, setId, attribute, wsoption);
}
}

0 comments on commit 5d7f6fa

Please sign in to comment.