Interface INotificationConnection

  • All Known Implementing Classes:
    NotificationConnection

    public interface INotificationConnection
    An instance of this interface represents a paper object that describes a notification connection. This is the paper object meant for editing and manipulation.
    • Method Detail

      • setIsNew

        void setIsNew​(boolean isnew)
        Set 'isnew' condition.
        Parameters:
        isnew - true if this is a new instance.
      • getIsNew

        boolean getIsNew()
        Get 'isnew' condition.
        Returns:
        true if this is a new connection, false otherwise.
      • setName

        void setName​(java.lang.String name)
        Set name.
        Parameters:
        name - is the name.
      • getName

        java.lang.String getName()
        Get name.
        Returns:
        the name
      • setDescription

        void setDescription​(java.lang.String description)
        Set description.
        Parameters:
        description - is the description.
      • getDescription

        java.lang.String getDescription()
        Get description.
        Returns:
        the description
      • setClassName

        void setClassName​(java.lang.String className)
        Set the class name.
        Parameters:
        className - is the class name.
      • getClassName

        java.lang.String getClassName()
        Get the class name.
        Returns:
        the class name
      • getConfigParams

        ConfigParams getConfigParams()
        Get the configuration parameters.
        Returns:
        the map. Can be modified.
      • setMaxConnections

        void setMaxConnections​(int maxCount)
        Set the maximum size of the connection pool.
        Parameters:
        maxCount - is the maximum connection count per JVM.
      • getMaxConnections

        int getMaxConnections()
        Get the maximum size of the connection pool.
        Returns:
        the maximum size.