psdi.app.escalation.engine

Class EscalationData

    • Constructor Summary

      Constructors 
      Constructor and Description
      EscalationData() 
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      java.lang.String getCondition()
      Returns the condition associated with the escalation.
      java.lang.String getEscalation()
      Returns the escalation identity.
      boolean getEscStatusFlag()
      Returns the escalation status flag.
      java.lang.String getObjectName()
      Returns the business object name associated with the escalation.
      java.lang.String getOrg()
      Returns the organization id associated with the escalation.
      java.lang.String getSite()
      Returns the site id associated with the escalation.
      java.lang.String getSlaNum()
      Returns the SLANUM for this escalation.
      boolean isActive()
      Returns whether the escalation is active or not.
      boolean isSLA()
      Returns whether the escalation was created by a SLA
      void setActive(boolean b)
      Sets whether the esclation is active or not.
      void setCondition(java.lang.String string)
      Sets the condition used by the escalation.
      void setEscalation(java.lang.String string)
      Sets the escalation identity.
      void setEscStatusFlag(boolean escStatusFlag)
      Sets the escalation status flag.
      void setObjectName(java.lang.String string)
      Sets the business object name associated with the escalation.
      void setOrg(java.lang.String string)
      Sets the organization id associated with the escalation.
      void setSite(java.lang.String string)
      Sets the site id associated with the escalation.
      void setSLA(boolean b)
      Sets whether the esclation is from a SLA.
      void setSlaNum(java.lang.String string)
      Sets the SLANUM.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • EscalationData

        public EscalationData()
    • Method Detail

      • isSLA

        public boolean isSLA()
        Returns whether the escalation was created by a SLA
        Returns:
        true to indicate that the escalation is from a SLA, otherwise false.
      • setSLA

        public void setSLA(boolean b)
        Sets whether the esclation is from a SLA.
        Parameters:
        b - true to indicate that the escalation is from a SLA, otherwise false.
      • setSlaNum

        public void setSlaNum(java.lang.String string)
        Sets the SLANUM.
        Parameters:
        slanum - The SLANUM associated with this SLA.
      • getSlaNum

        public java.lang.String getSlaNum()
        Returns the SLANUM for this escalation.
      • isActive

        public boolean isActive()
        Returns whether the escalation is active or not.
        Returns:
        true to indicate that the escalation is active, otherwise false.
      • setActive

        public void setActive(boolean b)
        Sets whether the esclation is active or not.
        Parameters:
        b - true to indicate that the escalation is active, otherwise false.
      • getCondition

        public java.lang.String getCondition()
        Returns the condition associated with the escalation.
        Returns:
        the condition associated with the escalation.
      • setCondition

        public void setCondition(java.lang.String string)
        Sets the condition used by the escalation.
        Parameters:
        string - the SQL condition associated with the escalation.
      • getObjectName

        public java.lang.String getObjectName()
        Returns the business object name associated with the escalation.
        Returns:
        the business object name associated with the escalation.
      • setObjectName

        public void setObjectName(java.lang.String string)
        Sets the business object name associated with the escalation.
        Parameters:
        string - the business object name associated with the escalation.
      • getOrg

        public java.lang.String getOrg()
        Returns the organization id associated with the escalation. The value can be null.
        Returns:
        the organization id associated with the escalation.
      • setOrg

        public void setOrg(java.lang.String string)
        Sets the organization id associated with the escalation.
        Parameters:
        string - the organization id associated with the escalation.
      • getSite

        public java.lang.String getSite()
        Returns the site id associated with the escalation. The value can be null.
        Returns:
        the site id associated with the escalation.
      • setSite

        public void setSite(java.lang.String string)
        Sets the site id associated with the escalation.
        Parameters:
        string - the site id associated with the escalation.
      • getEscalation

        public java.lang.String getEscalation()
        Returns the escalation identity.
        Returns:
        the escalation identity.
      • setEscalation

        public void setEscalation(java.lang.String string)
        Sets the escalation identity.
        Parameters:
        string - the escalation identity.
      • getEscStatusFlag

        public boolean getEscStatusFlag()
        Returns the escalation status flag.
        Returns:
      • setEscStatusFlag

        public void setEscStatusFlag(boolean escStatusFlag)
        Sets the escalation status flag.
        Parameters:
        string - the escalation status flag.