Uses of Class
tuwien.auto.calimero.mgmt.Destination

Packages that use Destination
tuwien.auto.calimero.mgmt Contains KNX property and management services. 
 

Uses of Destination in tuwien.auto.calimero.mgmt
 

Methods in tuwien.auto.calimero.mgmt that return Destination
 Destination ManagementClient.createDestination(IndividualAddress remote, boolean connectionOriented)
          Creates a new destination using the remote KNX address for management communication.
 Destination ManagementClientImpl.createDestination(IndividualAddress remote, boolean connectionOriented)
           
 Destination TransportLayerImpl.createDestination(IndividualAddress remote, boolean connectionOriented)
          Creates a new destination using the remote KNX address for doing transport layer communication.
 Destination TransportLayer.createDestination(IndividualAddress remote, boolean connectionOriented)
          Creates a new destination using the remote KNX address for doing transport layer communication.
 Destination ManagementClient.createDestination(IndividualAddress remote, boolean connectionOriented, boolean keepAlive, boolean verifyMode)
          Creates a new destination using the remote KNX address and connection settings for management communication.
 Destination ManagementClientImpl.createDestination(IndividualAddress remote, boolean connectionOriented, boolean keepAlive, boolean verifyMode)
           
 Destination TransportLayerImpl.createDestination(IndividualAddress remote, boolean connectionOriented, boolean keepAlive, boolean verifyMode)
          Creates a new destination using the remote KNX address and connection settings for doing transport layer communication.
 Destination TransportLayer.createDestination(IndividualAddress remote, boolean connectionOriented, boolean keepAlive, boolean verifyMode)
          Creates a new destination using the remote KNX address and connection settings for doing transport layer communication.
 Destination KNXDisconnectException.getDestination()
          Returns the destination which caused this exception.
 Destination Destination.AggregatorProxy.getDestination()
          Returns the destination associated with this proxy.
 

Methods in tuwien.auto.calimero.mgmt with parameters of type Destination
 byte ManagementClient.authorize(Destination dst, byte[] key)
          Authorizes at a communication partner using an authorization key to obtain a certain access level.
 byte ManagementClientImpl.authorize(Destination dst, byte[] key)
           
 void TransportLayerImpl.connect(Destination d)
           
 void TransportLayer.connect(Destination d)
          Connects to the destination.
 void TransportLayerImpl.destroyDestination(Destination d)
           
 void TransportLayer.destroyDestination(Destination d)
          Destroys the given destination and removes it from being maintained by this transport layer.
 void TransportLayerImpl.disconnect(Destination d)
           
 void TransportLayer.disconnect(Destination d)
          Disconnects from the destination.
 void TransportListener.disconnected(Destination d)
          The connection state of a destination changed from connected to disconnected.
 int ManagementClient.readADC(Destination dst, int channelNr, int repeat)
          Reads the value of the A/D converter of a communication partner.
 int ManagementClientImpl.readADC(Destination dst, int channelNr, int repeat)
           
 byte[] ManagementClient.readDeviceDesc(Destination dst, int descType)
          Reads the device descriptor information of a communication partner its controller.
 byte[] ManagementClientImpl.readDeviceDesc(Destination dst, int descType)
           
 byte[] ManagementClient.readMemory(Destination dst, int startAddr, int bytes)
          Reads memory data from the address space of a communication partner its controller.
 byte[] ManagementClientImpl.readMemory(Destination dst, int startAddr, int bytes)
           
 byte[] ManagementClient.readProperty(Destination dst, int objIndex, int propID, int start, int elements)
          Reads the value of a property of an interface object of a communication partner.
 byte[] ManagementClientImpl.readProperty(Destination dst, int objIndex, int propID, int start, int elements)
           
 byte[] ManagementClient.readPropertyDesc(Destination dst, int objIndex, int propID, int propIndex)
          Reads the description of a property of an interface object of a communication partner.
 byte[] ManagementClientImpl.readPropertyDesc(Destination dst, int objIndex, int propID, int propIndex)
           
 void ManagementClient.restart(Destination dst)
          Initiates a reset of the controller of a communication partner.
 void ManagementClientImpl.restart(Destination dst)
           
 void TransportLayerImpl.sendData(Destination d, Priority p, byte[] tsdu)
           
 void TransportLayer.sendData(Destination d, Priority p, byte[] tsdu)
          Sends data to the given destination using connection oriented mode.
 void ManagementClient.writeKey(Destination dst, int level, byte[] key)
          Modifies or deletes an authorization key associated to an access level of a communication partner.
 void ManagementClientImpl.writeKey(Destination dst, int level, byte[] key)
           
 void ManagementClient.writeMemory(Destination dst, int startAddr, byte[] data)
          Writes memory data in the address space of a communication partner its controller.
 void ManagementClientImpl.writeMemory(Destination dst, int startAddr, byte[] data)
           
 void ManagementClient.writeProperty(Destination dst, int objIndex, int propID, int start, int elements, byte[] data)
          Modifies the value of a property of an interface object of a communication partner.
 void ManagementClientImpl.writeProperty(Destination dst, int objIndex, int propID, int start, int elements, byte[] data)
           
 

Constructors in tuwien.auto.calimero.mgmt with parameters of type Destination
KNXDisconnectException(java.lang.String s, Destination d)
          Constructs a KNXDisconnectException with the specified detail message and the affected destination object.