Class InboxDetailsTransform

  • All Implemented Interfaces:
    AppTransform, Transform

    public class InboxDetailsTransform
    extends AbstractAppTransform
    Deprecated.
    We do not show the inbox details on the left toolbar on the history list page any more.

    Title: InboxTransformDetails.

    Description: This implements a Inbox Transform. It shows only the Inbox details, such as messages count for each type of object.

    Since:
    MicroStrategy Web 7.3.1 or earlier
    • Constructor Detail

      • InboxDetailsTransform

        public InboxDetailsTransform()
        Deprecated.
        Default constructor.
    • Method Detail

      • getDescription

        public java.lang.String getDescription()
        Deprecated.
        Description copied from interface: Transform
        Returns a textual description of the transform.
        Returns:
        the descriptor of this bean
      • initializeTransform

        public void initializeTransform​(Transformable data)
        Deprecated.
        Description copied from class: AbstractAppTransform

        This method initialize the private and protected fields of the transform, such as width and height. It also invokes the initializeWebComponent, initializeImages and initializeCss methods.

        This method is automatically called from the transform method. Transforms which would like to invoke other methods in this instance directly (for example, to invoke some render methods), need first to call this method to guarantee that the Transform is ready to generate output.
        Specified by:
        initializeTransform in interface AppTransform
        Overrides:
        initializeTransform in class AbstractAppTransform
        Parameters:
        data - the bean to transform.
      • renderReports

        public void renderReports​(MarkupOutput out)
        Deprecated.
        Renders the number of reports
        Since:
        MicroStrategy Web 8.0.0
      • renderDocuments

        public void renderDocuments​(MarkupOutput out)
        Deprecated.
        Renders the number of documents
        Since:
        MicroStrategy Web 8.0.0
      • getSupportedBeanType

        public java.lang.Class getSupportedBeanType()
        Deprecated.
        Description copied from class: AbstractAppTransform
        Returns the supported bean type. This abstract Transform supports all WebComponents so every sub-class should override this method to return the class of the Bean the Transform is expecting, for example:
         public class CustomReportClass extends AbstractAppTransform {
        
            public Class getSupportedBeanType() {
                //This Transform is expected to work only with a ReportBean,
                //therefore this method needs to return this class:
                return ReportBean.class;
            }
        
         }
         
        Specified by:
        getSupportedBeanType in interface Transform
        Overrides:
        getSupportedBeanType in class AbstractAppTransform
        Returns:
        a root class/interface supported by this transform.