psdi.app.report

Class ReportOutput

  • java.lang.Object
    • Constructor Detail

      • ReportOutput

        public ReportOutput(MboSet ms)
                     throws java.rmi.RemoteException
        Parameters:
        ms -
        Throws:
        java.rmi.RemoteException
    • Method Detail

      • generateAutoKey

        public void generateAutoKey()
                             throws java.rmi.RemoteException,
                                    MXException
        Description copied from class: Mbo
        This method has the mbo generate a unique identifier for itself. Most mbos do not support this and the default is to throw an access exception. Sub-classes supporting autokeying will override this default method.

        For example, an override often takes the following form (with the appropriate conditions and exception handling):

        getMboValue("pmnum").autoKey();
        or in other cases (no entry in autokey table), it could take the following:
        getMboValue("taglockid").generateUniqueID();
        Specified by:
        generateAutoKey in interface MboRemote
        Overrides:
        generateAutoKey in class Mbo
        Throws:
        java.rmi.RemoteException
        MXException
        See Also:
        MboValue.autoKey(), MboValue.generateUniqueID()