org.wso2.carbon.user.mgt.stub.types.carbon.UIPermissionNode Java Examples

The following examples show how to use org.wso2.carbon.user.mgt.stub.types.carbon.UIPermissionNode. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: UserAdminClient.java    From carbon-identity-framework with Apache License 2.0 5 votes vote down vote up
public UIPermissionNode getAllUIPermissions() throws AxisFault {
    try {
        return stub.getAllUIPermissions();
    } catch (Exception e) {
        handleException(e);
    }
    return null;
}
 
Example #2
Source File: UserAdminClient.java    From carbon-identity-framework with Apache License 2.0 5 votes vote down vote up
public UIPermissionNode getRolePermissions(String roleName) throws AxisFault {
    try {
        return stub.getRolePermissions(roleName);
    } catch (Exception e) {
        handleException(e);
    }
    return null;
}
 
Example #3
Source File: UserAdminClient.java    From carbon-identity with Apache License 2.0 5 votes vote down vote up
public UIPermissionNode getAllUIPermissions() throws AxisFault {
    try {
        return stub.getAllUIPermissions();
    } catch (Exception e) {
        handleException(e);
    }
    return null;
}
 
Example #4
Source File: UserAdminClient.java    From carbon-identity with Apache License 2.0 5 votes vote down vote up
public UIPermissionNode getRolePermissions(String roleName) throws AxisFault {
    try {
        return stub.getRolePermissions(roleName);
    } catch (Exception e) {
        handleException(e);
    }
    return null;
}
 
Example #5
Source File: UserManagementClient.java    From product-es with Apache License 2.0 4 votes vote down vote up
public UIPermissionNode getAllUIPermissions() throws RemoteException, UserAdminUserAdminException {
    return userAdminStub.getAllUIPermissions();
}
 
Example #6
Source File: UserManagementClient.java    From product-es with Apache License 2.0 4 votes vote down vote up
public UIPermissionNode getRolePermissions(String roleName) throws RemoteException, UserAdminUserAdminException{
    return userAdminStub.getRolePermissions(roleName);
}