Package org.webappos.webcaller
Interface ITdaWebCallsAdapter
-
public interface ITdaWebCallsAdapter
Interface for webAppOS server-side web calls adapters implementing the "tdacall" calling conventions. Each adapter must be implemented as Java class with the full name org.webappos.adapters.webcalls.[adapter_name].WebCallsAdapter. The same adapter can implementedIJsonWebCallsAdapter
as well.- Author:
- Sergejs Kozlovics
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
tdacall(java.lang.String resolvedLocation, java.lang.String pwd, long rObject, lv.lumii.tda.raapi.RAAPI raapi, java.lang.String project_id, java.lang.String appFullName, java.lang.String login)
Performs a web call according to the "tdacall" calling conventions.
-
-
-
Method Detail
-
tdacall
void tdacall(java.lang.String resolvedLocation, java.lang.String pwd, long rObject, lv.lumii.tda.raapi.RAAPI raapi, java.lang.String project_id, java.lang.String appFullName, java.lang.String login)
Performs a web call according to the "tdacall" calling conventions.- Parameters:
resolvedLocation
- adapter-specific location of code to executepwd
- the directory, where the .webcalls file was locatedrObject
- a repository object (usually, an instance of TDAKernel::Command or TDAKernel::Event)raapi
- a pointer to the underlying model repository implementing RAAPIproject_id
- the current project_idappFullName
- the name of the current applogin
- the current user login
-
-