2019-06-26 08:14:52 -07:00
|
|
|
package stanza
|
2016-02-15 02:08:54 -08:00
|
|
|
|
2019-06-04 08:04:25 -07:00
|
|
|
import (
|
|
|
|
"encoding/xml"
|
|
|
|
)
|
2016-02-15 02:08:54 -08:00
|
|
|
|
|
|
|
type ControlSet struct {
|
|
|
|
XMLName xml.Name `xml:"urn:xmpp:iot:control set"`
|
|
|
|
Fields []ControlField `xml:",any"`
|
|
|
|
}
|
|
|
|
|
2019-06-13 08:22:39 -07:00
|
|
|
func (c *ControlSet) Namespace() string {
|
|
|
|
return c.XMLName.Space
|
|
|
|
}
|
|
|
|
|
2016-02-15 02:08:54 -08:00
|
|
|
type ControlGetForm struct {
|
|
|
|
XMLName xml.Name `xml:"urn:xmpp:iot:control getForm"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type ControlField struct {
|
|
|
|
XMLName xml.Name
|
|
|
|
Name string `xml:"name,attr,omitempty"`
|
|
|
|
Value string `xml:"value,attr,omitempty"`
|
|
|
|
}
|
2016-02-15 07:33:27 -08:00
|
|
|
|
|
|
|
type ControlSetResponse struct {
|
|
|
|
XMLName xml.Name `xml:"urn:xmpp:iot:control setResponse"`
|
|
|
|
}
|
2019-06-13 08:22:39 -07:00
|
|
|
|
|
|
|
func (c *ControlSetResponse) Namespace() string {
|
|
|
|
return c.XMLName.Space
|
|
|
|
}
|
2019-06-27 01:22:36 -07:00
|
|
|
|
|
|
|
// ============================================================================
|
|
|
|
// Registry init
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
TypeRegistry.MapExtension(PKTIQ, xml.Name{"urn:xmpp:iot:control", "set"}, ControlSet{})
|
|
|
|
}
|