Changes between Version 10 and Version 11 of FeddPluginCalls
- Timestamp:
- Jun 29, 2010 11:16:17 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FeddPluginCalls
v10 v11 1 1 = Plug-in Interfaces = 2 2 3 Access controllers respond to a series of standard calls from the experiment controller to create local allocations. These are described in conceptual detail [FeddPluginArchitecture elsewhere on this site] and in a [http://groups.geni.net/geni/attachment/wiki/TIEDProtoGENIPlugin/TIED_CF_plugin_design_spec_v1.0.pdf document about the design of the ProtoGENI plug-in]. This section discussed the calls and their encoding for developers interested in reading and extending existing plug-in code .3 Access controllers respond to a series of standard calls from the experiment controller to create local allocations. These are described in conceptual detail [FeddPluginArchitecture elsewhere on this site] and in a [http://groups.geni.net/geni/attachment/wiki/TIEDProtoGENIPlugin/TIED_CF_plugin_design_spec_v1.0.pdf document about the design of the ProtoGENI plug-in]. This section discussed the calls and their encoding for developers interested in reading and extending existing plug-in code, developers will likely want to [FeddSkelPlugin configure and play with the skeleton plug-in] when you have completed this page (or before reading it, depending on how one's neurons are arranged). 4 4 5 5 The interfaces are all described in xsd and SOAP, and these are easy enough to convert into python data structures [SoapToPython once you know how]. Below we describe the semantics of each call, and the tools available to plug-in writers to assist in implementation. These tools are available when plug-ins derive from [source:fedd/trunk/federation/access.py federation.access], as [source:fedd/trunk/federation/skeleton_access.py federation.skeleton_access] is. … … 213 213 214 214 {{{allocID}}} identifies either the allocation to release or that has been released. 215 216 == Next == 217 218 Developers may want to proceed to [FeddSkelPlugin configure and play with the skeleton plug-in].