Newer
Older
package nucleus
Fabian Seidl
committed
"code.fbi.h-da.de/danet/gosdn/controller/customerrs"
// Restconf implements the Transport interface and provides an SBI with the
// possibility to access a Restconf endpoint.
// Get not yet implemented.
func (r Restconf) Get(ctx context.Context, params ...string) (interface{}, error) {
Fabian Seidl
committed
return nil, &customerrs.NotYetImplementedError{}
}
// Set not yet implemented.
func (r Restconf) Set(ctx context.Context, params ...interface{}) error {
Fabian Seidl
committed
return &customerrs.NotYetImplementedError{}
}
// Subscribe not yet implemented.
func (r Restconf) Subscribe(ctx context.Context, params ...string) error {
Fabian Seidl
committed
return &customerrs.NotYetImplementedError{}
// Type not yet implemented.
// GetOptions not yet implemented.
func (r Restconf) GetOptions() interface{} {
Fabian Seidl
committed
return &customerrs.NotYetImplementedError{}
// ProcessResponse not yet implemented.
func (r Restconf) ProcessResponse(resp interface{}, root interface{}, models *ytypes.Schema) error {
Fabian Seidl
committed
return &customerrs.NotYetImplementedError{}