BackPrevious Topic  Next TopicNext

Applying Security Context Support

Security Context Support refers to a new set of functionalities that Logi Report products provide to support Unify NXJ Security Context. Other than using the security system of Logi Report, Security Context Support enables Unify NXJ developers to write code that obtains user profile information from the security database. This topic describes the Security Context APIs Logi Report provides, how you can configure the Logi Report products to adopt Security Context Support and apply Security Context in different scenarios in Logi Report.

This topic contains the following sections:

Security Context APIs

Logi Report provides a set of APIs to support the Security Context feature.

JRSecurityContextFactory

  • Package: jet.acl.api
  • Usage: This interface is used to create an instance of SecurityContext.
  • Method: getSecurityContext(javax.swing.JFrame frame, java.util.Vector roles)
  • Parameters:
    • frame - The parent window.
    • roles - The role list defined by RLS (Record Level Security).
  • Return: The SecurityContext object.

JRSecurityUserDataSource

  • Package: jet.datasource
  • Usage: A JRSecurityUserDataSource provides data to Logi Report for generating reports. The JRSecurityUserDataSource class is developed by users. It can provide data from a flat file, non-relational database, or application data. The data returned by this class is in the ResultSet object, so users need to create a ResultSet instance. Then, Logi Report uses the instance to fetch the data. Users can also create their own ResultSet class.
  • Method: getResultSet(SecurityContext sc, java.lang.String param) - Gets the data in ResultSet according to parameters.
  • Parameters:
    • sc - A SecurityContext object, which the user implements.
    • param - The parameter that is to be used for UDS.
  • Return: The ResultSet object.

JRSecurityHierarchicalDataSource

  • Package: jet.datasource
  • Usage: A JRSecurityHierarchicalDataSource provides data to Logi Report for generating reports. The JRSecurityHierarchicalDataSource class is developed by users. It can provide data from a flat file, non-relational database, or application data. The data returned by this class is in the JRHierarchicalDataset object, so users need to create a JRHierarchicalDataset instance. Then, Logi Report uses the instance to fetch the data. Users can also create their own JRHierarchicalDataset class.
  • Method: getHierarchicalDataset(SecurityContext sc, java.lang.String param) - Gets the data in JRSecurityHierarchicalDataset according to the Security Context and parameters.
  • Parameters:
    • sc - A SecurityContext object, which the implements.
    • param - The parameter that is to be used for HDS.
  • Return: The JRHierarchicalDataset object.

SecurityContextFactory

  • Package: jet.server.api
  • Usage: SecurityContextFactory is an interface for implementing the Security Context.
  • Method: getSecurityContext(java.lang.String realmName, java.lang.String userName, java.lang.String resource, int versionNumber) - Returns the SecurityContext of a specified resource.
  • Parameters:
    • realmName - The realm name of the current active realm on Server.
    • userName - The user name. For a schedule task, it is submitter; for an advanced run task, it is the user signing in to Server.
    • resource - The resource on Server. Now, it is limited to report resource only. For example: /SampleReports/Employee Information List.cls
    • versionNumber - The version number of the resource.
  • Return: The SecurityContext of the specified resource.

SecurityContext

  • Package: jet.server.api
  • Usage: SecurityContext is an interface for implementing the Security Context.
  • Methods:
    • getEmail() - Returns the email address of the user.
    • getRoles() - Returns the roles the user belongs to.
    • getSalutation() - Returns the salutation of the user (for example, Mr., Mrs., and so on).
    • getUserName() - Returns the user name.

Back to top

Configuring Logi Report Products for Security Context Support

By default, Logi Report uses its own security system. If you want to enable the Security Context Support feature in the Logi Report products, you need to configure the products by yourself.

To configure Designer:

  1. Open the file config.xml in <designer_install_root>\bin, and add the elements <SecurityContextFactory value=""/> and <DeployWizardFactory value=""/> as the child of the element <Option>.
  2. Implement classes to the attribute values. For example, part of the config.xml file might be:

    <Option>
        …
        <SecurityContextFactory value="com.utify.JRSecurityContextFactoryImpl"/>
        <DeployWizardFactory value="com.utify.JRDeployWizardFactoryImpl"/>
    </Option>

  3. Add the root path of the implementing class packages to the ADDCLASSPATH variable of setenv.bat in <install_root>\bin.

Security Context interfaces in Server are different from those in Designer, so you need to implement the Server interfaces separately.

To configure Server:

  1. Open the file server.properites in <server_install_root>\bin, and modify the value of the property com.jinfonet.securityContextFactory (add the property if it doesn't exist) to be that of your SecurityContextFactory implementing class package and name.

    com.jinfonet.securityContextFactory=mypackage.myclass

    Alternatively, you can add the parameter –D com.jinfonet.securityContextFactory = mypackage.myclass to the file JRServer.bat in <server_install_root>\bin with which you start your Server.

  2. Add the root path of the implementing class packages to the class path of the file JRServer.bat.

Back to top

Using Security Context in Viewing Report

When you view a report that requires the Security Context to run, Designer applies the implemented JRSecurityContextFactory to instantiate the SecurityContext instance which it uses to execute the report.

Back to top

Using Security Context in the Formula Editor

The Formula Editor enables you to pass the Security Context to a user-defined function (UDF) .

You can call getSecurityContext() in your formula, which passes the returned object to your UDF function. The method getSecurityContext() returns a DbSecurityContext type object, which provides the method get() to get the Security Context instance transfer from Server or Designer.

DbSecurityContext is a new data type for the SecurityContext object. The data type of all the variables used in UDF functions should be DbValue. The following shows an example.

Import userClass from "UserFunction";
userClass.getData(getSecurityContext(), @country, …);

Back to top

Using Security Context in the Deployment Wizard

Logi Report provides you with two API methods which enable you to bring out your own deployment tool.

DeploymentWizard

  • Package: com.jinfonet.designer.deployment.api
  • Usage: DeploymentWizard is an interface used for implementing the customized deployment wizard.
  • Method: deploy (Frame frame, String catFullPathName, String reporthome).
  • Parameters:
    • frame - The frame of the deployment wizard.
    • catalogFullPath - The full path name of the catalog file.
    • reporthome - The report home path.

DeploymentWizardFactory

  • Package: com.jinfonet.designer.deployment.api
  • Usage: DeploymentWizardFactory is an interface used for implementing the customized deployment wizard.
  • Method: getDeploymentWizard() - Returns the DeploymentWizard.

The following are the working principles:

  • Loading DeployWizardFactory class name from configuration information:

    In Designer, you can find the file config.xml stored in <designer_install_root>\bin. This file corresponds with the Options dialog box. You can modify the XML file to suit your requirements. Designer loads information from the XML file and configures the Options dialog box when it starts up.

  • Getting DeployWizardFactory class name and showing the customized deployment wizard:

    When you select an item in the File > Publish menu in Designer, Designer first checks if there is deployWizardFactory in ReportOption, and then tries to create new instance by the class name. If Designer can load the class of the customized deployWizard successfully, it displays the corresponding wizard; otherwise, Designer displays the default wizard.

Back to top

BackPrevious Topic  Next TopicNext