Revision 23b2305f
Added by Marc Dequènes over 14 years ago
- ID 23b2305f877821ffeda0c7457aa90e70b2d06f5b
bin/mapmaker | ||
---|---|---|
include CyborgServerInterface
|
||
include CyborgServerRootInterfaceAddon
|
||
|
||
class Taiste
|
||
include CyborgServerInterface
|
||
|
||
def api_methods
|
||
["coucou", "toto", "plop"]
|
||
end
|
||
|
||
dynamic_interface {|node_name| ">>> #{node_name} <<<" }
|
||
end
|
||
|
||
class DNS < Services::DNS::System
|
||
include CyborgServerInterface
|
||
|
||
... | ... | |
"coucou: " + data.inspect
|
||
end
|
||
|
||
class Taiste
|
||
include CyborgServerInterface
|
||
|
||
def api_methods
|
||
["coucou", "toto", "plop"]
|
||
end
|
||
|
||
dynamic_interface {|node_name| ">>> #{node_name} <<<" }
|
||
end
|
||
|
||
class Zones
|
||
include CyborgServerStatefulInterface
|
||
|
||
... | ... | |
@dns.zones
|
||
end
|
||
|
||
def api_container_methods
|
||
api_methods
|
||
end
|
||
|
||
stateful_dynamic_interface("dns/zones/#NODE#") {|node_name| Zone.new(node_name) }
|
||
|
||
class Zone < Services::DNS::Zone
|
Also available in: Unified diff
[fix/security] Cyborg server interface: restrict non-leaf path lookup to containers