Matt Rosencrantz | 786f727 | 2015-02-11 15:18:07 -0800 | [diff] [blame] | 1 | package app |
| 2 | |
Matt Rosencrantz | feefb77 | 2015-02-18 14:58:49 -0800 | [diff] [blame] | 3 | import ( |
Matt Rosencrantz | ec3b950 | 2015-02-19 12:53:13 -0800 | [diff] [blame] | 4 | "signature" |
Matt Rosencrantz | feefb77 | 2015-02-18 14:58:49 -0800 | [diff] [blame] | 5 | "time" |
| 6 | |
Jiri Simsa | 1f1302c | 2015-02-23 16:18:34 -0800 | [diff] [blame^] | 7 | "v.io/v23/security" |
Matt Rosencrantz | feefb77 | 2015-02-18 14:58:49 -0800 | [diff] [blame] | 8 | ) |
| 9 | |
Matt Rosencrantz | 786f727 | 2015-02-11 15:18:07 -0800 | [diff] [blame] | 10 | type Controller interface { |
Matt Rosencrantz | feefb77 | 2015-02-18 14:58:49 -0800 | [diff] [blame] | 11 | // Serve instructs WSPR to start listening for calls on behalf |
| 12 | // of a javascript server. |
| 13 | Serve(name string, serverId uint32) error |
| 14 | // Stop instructs WSPR to stop listening for calls for the |
| 15 | // given javascript server. |
| 16 | Stop(serverId uint32) error |
| 17 | // AddName adds a published name to an existing server. |
| 18 | AddName(serverId uint32, name string) error |
| 19 | // RemoveName removes a published name from an existing server. |
| 20 | RemoveName(serverId uint32, name string) error |
| 21 | |
| 22 | // UnlinkJSBlessings removes the given blessings from the blessings store. |
| 23 | UnlinkJSBlessings(handle int32) error |
| 24 | // BlessPublicKey creates a new blessing. |
| 25 | BlessPublicKey(fromHandle int32, caveats []security.Caveat, durationMs time.Duration, extension string) (handle int32, publicKey string | error) |
| 26 | // CreateBlessings creates a new principal self-blessed with the given extension. |
| 27 | CreateBlessings(extension string) (handle int32, publicKey string | error) |
Matt Rosencrantz | ec3b950 | 2015-02-19 12:53:13 -0800 | [diff] [blame] | 28 | |
| 29 | // RemoteBlessings fetches the remote blessings for a given name and method. |
| 30 | RemoteBlessings(name, method string) ([]string | error) |
| 31 | // Signature fetches the signature for a given name. |
| 32 | Signature(name string) ([]signature.Interface | error) |
Matt Rosencrantz | 786f727 | 2015-02-11 15:18:07 -0800 | [diff] [blame] | 33 | } |