Qore HueRestClient Module Reference 1.0
Loading...
Searching...
No Matches
HueRestClient::HueRestConnection Class Reference

Class for Hue REST connections; returns HueRestClient objects. More...

#include <HueRestClient.qm.dox.h>

Inheritance diagram for HueRestClient::HueRestConnection:
[legend]

Public Member Methods

 constructor (string name, string description, string url=HueRestClient::DefaultUrl, hash< auto > attributes={}, hash< auto > options={})
 creates the HueRestConnection object More...
 
DataProvider::AbstractDataProvider getDataProvider ()
 returns a data provider object for this connection More...
 
string getType ()
 returns "hue"
 
bool hasDataProvider ()
 returns True as this connection returns a data provider with the getDataProvider() method More...
 

Public Attributes

const ConnectionScheme
 Connection entry info.
 

Private Member Methods

hash< ConnectionSchemeInfo > getConnectionSchemeInfoImpl ()
 Returns the ConnectionSchemeInfo hash for this object.
 
HueRestClient getImpl (bool connect=True, *hash< auto > rtopts)
 returns a HueRestClient object More...
 
 setChildCapabilities ()
 Sets child data provider capabilities.
 

Detailed Description

Class for Hue REST connections; returns HueRestClient objects.

This class implements all options of RestClientConnection; in addition, this class provides the following default values for the following options:

See also
HueRestClient::HueRestClient::constructor() for more information on the above options

Member Function Documentation

◆ constructor()

HueRestClient::HueRestConnection::constructor ( string  name,
string  description,
string  url = HueRestClient::DefaultUrl,
hash< auto >  attributes = {},
hash< auto >  options = {} 
)

creates the HueRestConnection object

Parameters
namethe name of the connection
descriptionconnection description
urlconnection URL (potentially with password info)
attributesvarious attributes. See below
optionsconnection options

See ConnectionProvider::AbstractConnection::constructor() for attributes and options reference.

Exceptions
CONNECTION-OPTION-ERRORmissing or invalid connection option

◆ getDataProvider()

DataProvider::AbstractDataProvider HueRestClient::HueRestConnection::getDataProvider ( )

returns a data provider object for this connection

Returns
a data provider object for this connection

◆ getImpl()

HueRestClient HueRestClient::HueRestConnection::getImpl ( bool  connect = True,
*hash< auto >  rtopts 
)
privatevirtual

returns a HueRestClient object

Parameters
connectif True, then the connection is returned already connected
rtoptsthis connection type does not accept any runtime options, so this parameter is ignored
Returns
a HueRestClient object

Reimplemented from RestClient::RestConnection.

◆ hasDataProvider()

bool HueRestClient::HueRestConnection::hasDataProvider ( )

returns True as this connection returns a data provider with the getDataProvider() method

Returns
True as this connection returns a data provider with the getDataProvider() method
See also
getDataProvider()