Class PlatformData


  • public class PlatformData
    extends java.lang.Object
    Transfer object for information about a connected platform. 1: platform id, 2: protocol name, 3: ready flag (false=connecting, true=connected, null=disconnected).
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected boolean connected
      The connection state (true=connected event, false=disconnected event).
      protected IComponentIdentifier platform
      The platform.
      protected java.lang.String protocol
      The protocol name (i.e.
    • Constructor Summary

      Constructors 
      Constructor Description
      PlatformData()
      Create a new platform data.
      PlatformData​(IComponentIdentifier platform, java.lang.String protocol, boolean connected)
      Create a new platform data.
    • Method Summary

      • Methods inherited from class java.lang.Object

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

      • protocol

        protected java.lang.String protocol
        The protocol name (i.e. url prefix).
      • connected

        protected boolean connected
        The connection state (true=connected event, false=disconnected event).
    • Constructor Detail

      • PlatformData

        public PlatformData()
        Create a new platform data.
      • PlatformData

        public PlatformData​(IComponentIdentifier platform,
                            java.lang.String protocol,
                            boolean connected)
        Create a new platform data.