jet.server.api.custom.security.user
Interface UserPrivilegeProvider


public interface UserPrivilegeProvider

Within interfaces of JReport security API, UserPrivilegeProvider is used to provide customized privilege setting of user. Except getting user privilege setting from customer's external security system, this interface also provide ability to modify user privilege setting in customer's external security system.
Privilege is a credential that a special operation on JReport server, this operation is not refer to any node in JReport server resource tree. Currently there are 3 types of privileges in JReport server: jet.cs.util.APIConst.PRIVILEGE_CREATE_ANALYSIS_REPORT indicates credential to new/open an analysis report, jet.cs.util.APIConst.PRIVILEGE_PUBLISH_REPORT indicates credential to deploy report/catalog to server, jet.cs.util.APIConst.PRIVILEGE_ACCESS_ADVANCED_PROPERTIES indicates credential to access advance information

Since:
version 8

Method Summary
 java.util.Hashtable getUserPrivileges(java.lang.String realmName)
          Get all users' privilege setting from customer's external security system.
 boolean isEnableEdit()
          Indicates whether customer's external security system will be modified by invoking some methods in UserPrivilegeProvider.
In common cases, invokeing setUserPrivileges() should take effect on customer's external security system, and cause modification of external security system, this method should return true in such case.
 void setUserPrivileges(java.lang.String realmName, java.lang.String userName, java.lang.String[] privileges)
          Set a user's privileges in customer's external security system.
 

Method Detail

getUserPrivileges

java.util.Hashtable getUserPrivileges(java.lang.String realmName)
                                      throws JRCustomerException
Get all users' privilege setting from customer's external security system.

Parameters:
realmName - the realm name
Returns:
A Hashtable object to represent all users' privilege setting. In the returned Hashtable, key is user name, value is a String array, which may contain below strings: jet.cs.util.APIConst.PRIVILEGE_CREATE_ANALYSIS_REPORT, jet.cs.util.APIConst.PRIVILEGE_PUBLISH_REPORT and jet.cs.util.APIConst.PRIVILEGE_ACCESS_ADVANCED_PROPERTIES jet.cs.util.APIConst.PRIVILEGE_CREATE_ANALYSIS_REPORT indicates credential to new/open an analysis report, jet.cs.util.APIConst.PRIVILEGE_PUBLISH_REPORT indicates credential to deploy report/catalog to server, jet.cs.util.APIConst.PRIVILEGE_ACCESS_ADVANCED_PROPERTIES indicates credential to access advance information
Throws:
JRCustomerException - If an error occurs during JReport server security system invoking this method, and the implementation think should throw this error to JReport server security system.

setUserPrivileges

void setUserPrivileges(java.lang.String realmName,
                       java.lang.String userName,
                       java.lang.String[] privileges)
                       throws NoSuchUserException,
                              JRCustomerException
Set a user's privileges in customer's external security system.

Parameters:
realmName - the realm name
userName - the user name
privileges - A String array, which may contain below strings: jet.cs.util.APIConst.PRIVILEGE_CREATE_ANALYSIS_REPORT, jet.cs.util.APIConst.PRIVILEGE_PUBLISH_REPORT and jet.cs.util.APIConst.PRIVILEGE_ACCESS_ADVANCED_PROPERTIES jet.cs.util.APIConst.PRIVILEGE_CREATE_ANALYSIS_REPORT indicates credential to new/open an analysis report, jet.cs.util.APIConst.PRIVILEGE_PUBLISH_REPORT indicates credential to deploy report/catalog to server, jet.cs.util.APIConst.PRIVILEGE_ACCESS_ADVANCED_PROPERTIES indicates credential to access advance information
Throws:
NoSuchUserException - If there is no a user with specified name in customer's external security system.
JRCustomerException - If an error occurs during JReport server security system invoking this method, and the implementation think should throw this error to JReport server security system.

isEnableEdit

boolean isEnableEdit()
Indicates whether customer's external security system will be modified by invoking some methods in UserPrivilegeProvider.
In common cases, invokeing setUserPrivileges() should take effect on customer's external security system, and cause modification of external security system, this method should return true in such case. If cusotmer's external security system will not be affected by invoking setUserPrivileges(), this method should return false.
Return value of method isEditing() with paramter SecurityWebAdaptor.ACTION_EDIT_USER_PRIVILEGES in jet.server.api.SecurityWebAdaptor is same with this method's return value.

Returns:
true if external security system will be affected by invoking setUserPrivileges(), otherwise return false.
See Also:
SecurityWebAdaptor