acs-service-contract-init.tcl

Server startup initialization code for creating service contract alias wrappers.

Location:
packages/acs-service-contract/tcl/acs-service-contract-init.tcl
Created:
2018-10-04
Author:
Gustaf Neumann

Procedures in this file

Detailed information

AcsSc.acsobject.pageurl.category_idhandler (private)

 AcsSc.acsobject.pageurl.category_idhandler object_id

acs-service-contract operation. Call via acs_sc::invoke. Returns the package specific url to a page that displays an object

Parameters:
object_id - integer
Returns:
page_url - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 category::pageurl category::pageurl (private) AcsSc.acsobject.pageurl.category_idhandler AcsSc.acsobject.pageurl.category_idhandler AcsSc.acsobject.pageurl.category_idhandler->category::pageurl

Testcases:
No testcase defined.

AcsSc.acsobject.pageurl.category_tree_idhandler (private)

 AcsSc.acsobject.pageurl.category_tree_idhandler object_id

acs-service-contract operation. Call via acs_sc::invoke. Returns the package specific url to a page that displays an object

Parameters:
object_id - integer
Returns:
page_url - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 category_tree::pageurl category_tree::pageurl (private) AcsSc.acsobject.pageurl.category_tree_idhandler AcsSc.acsobject.pageurl.category_tree_idhandler AcsSc.acsobject.pageurl.category_tree_idhandler->category_tree::pageurl

Testcases:
No testcase defined.

AcsSc.auth_authentication.authenticate.local (private)

 AcsSc.auth_authentication.authenticate.local username password \
    parameters authority_id

acs-service-contract operation. Call via acs_sc::invoke. Validate this username/password combination, and return the result. Valid auth_status codes are 'ok', 'no_account', 'bad_password', 'auth_error', 'failed_to_connect'. The last, 'failed_to_connect', is reserved for communications or implementation errors. auth_message is a human-readable explanation of what went wrong, may contain HTML. Only checked if auth_status is not ok. Valid account_status codes are 'ok' and 'closed'. account_message may be supplied regardless of account_status, and may contain HTML.

Parameters:
username - string
password - string
parameters - string []
authority_id - integer
Returns:
auth_status - string
auth_message - string
account_status - string
account_message - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 auth::local::authentication::Authenticate auth::local::authentication::Authenticate (private) AcsSc.auth_authentication.authenticate.local AcsSc.auth_authentication.authenticate.local AcsSc.auth_authentication.authenticate.local->auth::local::authentication::Authenticate

Testcases:
No testcase defined.

AcsSc.auth_authentication.getparameters.local (private)

 AcsSc.auth_authentication.getparameters.local

acs-service-contract operation. Call via acs_sc::invoke. Get an arraay-list of the parameters required by this service contract implementation.

Returns:
parameters - string []
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 auth::local::authentication::GetParameters auth::local::authentication::GetParameters (private) AcsSc.auth_authentication.getparameters.local AcsSc.auth_authentication.getparameters.local AcsSc.auth_authentication.getparameters.local->auth::local::authentication::GetParameters

Testcases:
No testcase defined.

AcsSc.auth_authentication.mergeuser.local (private)

 AcsSc.auth_authentication.mergeuser.local from_user_id to_user_id \
    authority_id

acs-service-contract operation. Call via acs_sc::invoke. Merges two accounts given the user_id of each one

Parameters:
from_user_id - integer
to_user_id - integer
authority_id - integer
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 auth::local::authentication::MergeUser auth::local::authentication::MergeUser (private) AcsSc.auth_authentication.mergeuser.local AcsSc.auth_authentication.mergeuser.local AcsSc.auth_authentication.mergeuser.local->auth::local::authentication::MergeUser

Testcases:
No testcase defined.

AcsSc.auth_password.canchangepassword.local (private)

 AcsSc.auth_password.canchangepassword.local parameters

acs-service-contract operation. Call via acs_sc::invoke. Return whether the user can change his/her password through this implementation. The value is not supposed to depend on the username and should be cachable.

Parameters:
parameters - string []
Returns:
changeable_p - boolean
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 auth::local::password::CanChangePassword auth::local::password::CanChangePassword (private) AcsSc.auth_password.canchangepassword.local AcsSc.auth_password.canchangepassword.local AcsSc.auth_password.canchangepassword.local->auth::local::password::CanChangePassword

Testcases:
No testcase defined.

AcsSc.auth_password.canresetpassword.local (private)

 AcsSc.auth_password.canresetpassword.local parameters

acs-service-contract operation. Call via acs_sc::invoke. Return whether the user can reset his/her password through this implementation. The value is not supposed to depend on the username and should be cachable.

Parameters:
parameters - string []
Returns:
resettable_p - boolean
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 auth::local::password::CanResetPassword auth::local::password::CanResetPassword (private) AcsSc.auth_password.canresetpassword.local AcsSc.auth_password.canresetpassword.local AcsSc.auth_password.canresetpassword.local->auth::local::password::CanResetPassword

Testcases:
No testcase defined.

AcsSc.auth_password.canretrievepassword.local (private)

 AcsSc.auth_password.canretrievepassword.local parameters

acs-service-contract operation. Call via acs_sc::invoke. Return whether the user can retrieve his/her password through this implementation. The value is not supposed to depend on the username and should be cachable.

Parameters:
parameters - string []
Returns:
retrievable_p - boolean
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 auth::local::password::CanRetrievePassword auth::local::password::CanRetrievePassword (private) AcsSc.auth_password.canretrievepassword.local AcsSc.auth_password.canretrievepassword.local AcsSc.auth_password.canretrievepassword.local->auth::local::password::CanRetrievePassword

Testcases:
No testcase defined.

AcsSc.auth_password.changepassword.local (private)

 AcsSc.auth_password.changepassword.local username old_password \
    new_password parameters authority_id

acs-service-contract operation. Call via acs_sc::invoke. Change the user's password.

Parameters:
username - string
old_password - string
new_password - string
parameters - string []
authority_id - integer
Returns:
password_status - string
password_message - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 auth::local::password::ChangePassword auth::local::password::ChangePassword (private) AcsSc.auth_password.changepassword.local AcsSc.auth_password.changepassword.local AcsSc.auth_password.changepassword.local->auth::local::password::ChangePassword

Testcases:
No testcase defined.

AcsSc.auth_password.getparameters.local (private)

 AcsSc.auth_password.getparameters.local

acs-service-contract operation. Call via acs_sc::invoke. Get an arraay-list of the parameters required by this service contract implementation.

Returns:
parameters - string []
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 auth::local::password::GetParameters auth::local::password::GetParameters (private) AcsSc.auth_password.getparameters.local AcsSc.auth_password.getparameters.local AcsSc.auth_password.getparameters.local->auth::local::password::GetParameters

Testcases:
No testcase defined.

AcsSc.auth_password.resetpassword.local (private)

 AcsSc.auth_password.resetpassword.local username parameters \
    authority_id

acs-service-contract operation. Call via acs_sc::invoke. Reset the user's password to a new, randomly generated value. The implementation can either return the password, in which case the authentication API will email the password to the user. Or it can email the password itself, in which case it would return the empty string.

Parameters:
username - string
parameters - string []
authority_id - integer
Returns:
password_status - string
password_message - string
password - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 auth::local::password::ResetPassword auth::local::password::ResetPassword (private) AcsSc.auth_password.resetpassword.local AcsSc.auth_password.resetpassword.local AcsSc.auth_password.resetpassword.local->auth::local::password::ResetPassword

Testcases:
No testcase defined.

AcsSc.auth_password.retrievepassword.local (private)

 AcsSc.auth_password.retrievepassword.local username parameters

acs-service-contract operation. Call via acs_sc::invoke. Retrieve the user's password. The implementation can either return the password, in which case the authentication API will email the password to the user. Or it can email the password itself, in which case it would return the empty string for password.

Parameters:
username - string
parameters - string []
Returns:
password_status - string
password_message - string
password - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 auth::local::password::RetrievePassword auth::local::password::RetrievePassword (private) AcsSc.auth_password.retrievepassword.local AcsSc.auth_password.retrievepassword.local AcsSc.auth_password.retrievepassword.local->auth::local::password::RetrievePassword

Testcases:
No testcase defined.

AcsSc.auth_registration.getelements.acs_testing (private)

 AcsSc.auth_registration.getelements.acs_testing parameters

acs-service-contract operation. Call via acs_sc::invoke. Get a list of required and a list of optional fields available when registering accounts through this service contract implementation.

Parameters:
parameters - string []
Returns:
requiered - string []
optional - string []
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 auth::local::registration::GetElements auth::local::registration::GetElements (private) AcsSc.auth_registration.getelements.acs_testing AcsSc.auth_registration.getelements.acs_testing AcsSc.auth_registration.getelements.acs_testing->auth::local::registration::GetElements

Testcases:
No testcase defined.

AcsSc.auth_registration.getelements.local (private)

 AcsSc.auth_registration.getelements.local parameters

acs-service-contract operation. Call via acs_sc::invoke. Get a list of required and a list of optional fields available when registering accounts through this service contract implementation.

Parameters:
parameters - string []
Returns:
requiered - string []
optional - string []
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 auth::local::registration::GetElements auth::local::registration::GetElements (private) AcsSc.auth_registration.getelements.local AcsSc.auth_registration.getelements.local AcsSc.auth_registration.getelements.local->auth::local::registration::GetElements

Testcases:
No testcase defined.

AcsSc.auth_registration.getparameters.acs_testing (private)

 AcsSc.auth_registration.getparameters.acs_testing

acs-service-contract operation. Call via acs_sc::invoke. Get an array-list of the parameters required by this service contract implementation.

Returns:
parameters - string []
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 auth::local::registration::GetParameters auth::local::registration::GetParameters (private) AcsSc.auth_registration.getparameters.acs_testing AcsSc.auth_registration.getparameters.acs_testing AcsSc.auth_registration.getparameters.acs_testing->auth::local::registration::GetParameters

Testcases:
No testcase defined.

AcsSc.auth_registration.getparameters.local (private)

 AcsSc.auth_registration.getparameters.local

acs-service-contract operation. Call via acs_sc::invoke. Get an array-list of the parameters required by this service contract implementation.

Returns:
parameters - string []
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 auth::local::registration::GetParameters auth::local::registration::GetParameters (private) AcsSc.auth_registration.getparameters.local AcsSc.auth_registration.getparameters.local AcsSc.auth_registration.getparameters.local->auth::local::registration::GetParameters

Testcases:
No testcase defined.

AcsSc.auth_registration.register.acs_testing (private)

 AcsSc.auth_registration.register.acs_testing parameters username \
    authority_id first_names last_name screen_name email url password \
    secret_question secret_answer

acs-service-contract operation. Call via acs_sc::invoke. Register a new account. Valid status codes are: 'ok', 'data_error', and 'reg_error', and 'fail'. 'data_error' means that the implementation is returning an array-list of element-name, message with error messages for each individual element. 'reg_error' is any other registration error, and 'fail' is reserved to communications or implementation errors.

Parameters:
parameters - string []
username - string
authority_id - integer
first_names - string
last_name - string
screen_name - string
email - string
url - string
password - string
secret_question - string
secret_answer - string
Returns:
creation_status - string
creation_message - string
element_messages - string []
account_status - string
account_message - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 acs::test::auth::registration::Register acs::test::auth::registration::Register (private) AcsSc.auth_registration.register.acs_testing AcsSc.auth_registration.register.acs_testing AcsSc.auth_registration.register.acs_testing->acs::test::auth::registration::Register

Testcases:
No testcase defined.

AcsSc.auth_registration.register.local (private)

 AcsSc.auth_registration.register.local parameters username \
    authority_id first_names last_name screen_name email url password \
    secret_question secret_answer

acs-service-contract operation. Call via acs_sc::invoke. Register a new account. Valid status codes are: 'ok', 'data_error', and 'reg_error', and 'fail'. 'data_error' means that the implementation is returning an array-list of element-name, message with error messages for each individual element. 'reg_error' is any other registration error, and 'fail' is reserved to communications or implementation errors.

Parameters:
parameters - string []
username - string
authority_id - integer
first_names - string
last_name - string
screen_name - string
email - string
url - string
password - string
secret_question - string
secret_answer - string
Returns:
creation_status - string
creation_message - string
element_messages - string []
account_status - string
account_message - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 auth::local::registration::Register auth::local::registration::Register (private) AcsSc.auth_registration.register.local AcsSc.auth_registration.register.local AcsSc.auth_registration.register.local->auth::local::registration::Register

Testcases:
No testcase defined.

AcsSc.auth_sync_process.getacknowledgementdocument.ims_enterprise_v_1p1 (private)

 AcsSc.auth_sync_process.getacknowledgementdocument.ims_enterprise_v_1p1 \
    job_id document parameters

acs-service-contract operation. Call via acs_sc::invoke. Return an acknowledgement document in a format suitable for display on.

Parameters:
job_id - integer
document - string
parameters - string []
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 auth::sync::process_doc::ims::GetAcknowledgementDocument auth::sync::process_doc::ims::GetAcknowledgementDocument (private) AcsSc.auth_sync_process.getacknowledgementdocument.ims_enterprise_v_1p1 AcsSc.auth_sync_process.getacknowledgementdocument.ims_enterprise_v_1p1 AcsSc.auth_sync_process.getacknowledgementdocument.ims_enterprise_v_1p1->auth::sync::process_doc::ims::GetAcknowledgementDocument

Testcases:
No testcase defined.

AcsSc.auth_sync_process.getelements.ims_enterprise_v_1p1 (private)

 AcsSc.auth_sync_process.getelements.ims_enterprise_v_1p1 parameters

acs-service-contract operation. Call via acs_sc::invoke. Get an list of the elements handled by this batch synchronization (first_names, last_name, username, email, etc). These elements will not be editable by the user, so as not to risk overwriting the user's changes with a later synchronization.

Parameters:
parameters - string []
Returns:
elements - string []
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 auth::sync::process_doc::ims::GetElements auth::sync::process_doc::ims::GetElements (private) AcsSc.auth_sync_process.getelements.ims_enterprise_v_1p1 AcsSc.auth_sync_process.getelements.ims_enterprise_v_1p1 AcsSc.auth_sync_process.getelements.ims_enterprise_v_1p1->auth::sync::process_doc::ims::GetElements

Testcases:
No testcase defined.

AcsSc.auth_sync_process.getparameters.ims_enterprise_v_1p1 (private)

 AcsSc.auth_sync_process.getparameters.ims_enterprise_v_1p1

acs-service-contract operation. Call via acs_sc::invoke. Get an array-list of the parameters required by this service contract implementation.

Returns:
parameters - string []
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 auth::sync::process_doc::ims::GetParameters auth::sync::process_doc::ims::GetParameters (private) AcsSc.auth_sync_process.getparameters.ims_enterprise_v_1p1 AcsSc.auth_sync_process.getparameters.ims_enterprise_v_1p1 AcsSc.auth_sync_process.getparameters.ims_enterprise_v_1p1->auth::sync::process_doc::ims::GetParameters

Testcases:
No testcase defined.

AcsSc.auth_sync_process.processdocument.ims_enterprise_v_1p1 (private)

 AcsSc.auth_sync_process.processdocument.ims_enterprise_v_1p1 job_id \
    document parameters

acs-service-contract operation. Call via acs_sc::invoke. Process a user synchronization document.

Parameters:
job_id - integer
document - string
parameters - string []
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 auth::sync::process_doc::ims::ProcessDocument auth::sync::process_doc::ims::ProcessDocument (private) AcsSc.auth_sync_process.processdocument.ims_enterprise_v_1p1 AcsSc.auth_sync_process.processdocument.ims_enterprise_v_1p1 AcsSc.auth_sync_process.processdocument.ims_enterprise_v_1p1->auth::sync::process_doc::ims::ProcessDocument

Testcases:
No testcase defined.

AcsSc.auth_sync_retrieve.getdocument.httpget (private)

 AcsSc.auth_sync_retrieve.getdocument.httpget parameters

acs-service-contract operation. Call via acs_sc::invoke. Retrieves the document. Returns doc_status of 'ok', 'get_error', or 'failed_to_connect'. If not 'ok', then it should set doc_message to explain the problem. If 'ok', it must set document to the document retrieved, and set snapshot_p to t if it has retrieved a snapshot document.

Parameters:
parameters - string []
Returns:
doc_status - string
doc_message - string
document - string
snapshot_p - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 auth::sync::get_doc::http::GetDocument auth::sync::get_doc::http::GetDocument (private) AcsSc.auth_sync_retrieve.getdocument.httpget AcsSc.auth_sync_retrieve.getdocument.httpget AcsSc.auth_sync_retrieve.getdocument.httpget->auth::sync::get_doc::http::GetDocument

Testcases:
No testcase defined.

AcsSc.auth_sync_retrieve.getdocument.localfilesystem (private)

 AcsSc.auth_sync_retrieve.getdocument.localfilesystem parameters

acs-service-contract operation. Call via acs_sc::invoke. Retrieves the document. Returns doc_status of 'ok', 'get_error', or 'failed_to_connect'. If not 'ok', then it should set doc_message to explain the problem. If 'ok', it must set document to the document retrieved, and set snapshot_p to t if it has retrieved a snapshot document.

Parameters:
parameters - string []
Returns:
doc_status - string
doc_message - string
document - string
snapshot_p - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 auth::sync::get_doc::file::GetDocument auth::sync::get_doc::file::GetDocument (private) AcsSc.auth_sync_retrieve.getdocument.localfilesystem AcsSc.auth_sync_retrieve.getdocument.localfilesystem AcsSc.auth_sync_retrieve.getdocument.localfilesystem->auth::sync::get_doc::file::GetDocument

Testcases:
No testcase defined.

AcsSc.auth_sync_retrieve.getparameters.httpget (private)

 AcsSc.auth_sync_retrieve.getparameters.httpget

acs-service-contract operation. Call via acs_sc::invoke. Get an array-list of the parameters required by this service contract implementation.

Returns:
parameters - string []
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 auth::sync::get_doc::http::GetParameters auth::sync::get_doc::http::GetParameters (private) AcsSc.auth_sync_retrieve.getparameters.httpget AcsSc.auth_sync_retrieve.getparameters.httpget AcsSc.auth_sync_retrieve.getparameters.httpget->auth::sync::get_doc::http::GetParameters

Testcases:
No testcase defined.

AcsSc.auth_sync_retrieve.getparameters.localfilesystem (private)

 AcsSc.auth_sync_retrieve.getparameters.localfilesystem

acs-service-contract operation. Call via acs_sc::invoke. Get an array-list of the parameters required by this service contract implementation.

Returns:
parameters - string []
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 auth::sync::get_doc::file::GetParameters auth::sync::get_doc::file::GetParameters (private) AcsSc.auth_sync_retrieve.getparameters.localfilesystem AcsSc.auth_sync_retrieve.getparameters.localfilesystem AcsSc.auth_sync_retrieve.getparameters.localfilesystem->auth::sync::get_doc::file::GetParameters

Testcases:
No testcase defined.

AcsSc.dav.copy.content_folder (private)

 AcsSc.dav.copy.content_folder

acs-service-contract operation. Call via acs_sc::invoke. DAV Copy Method

Returns:
response - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 oacs_dav::impl::content_folder::copy oacs_dav::impl::content_folder::copy (private) AcsSc.dav.copy.content_folder AcsSc.dav.copy.content_folder AcsSc.dav.copy.content_folder->oacs_dav::impl::content_folder::copy

Testcases:
No testcase defined.

AcsSc.dav.copy.content_revision (private)

 AcsSc.dav.copy.content_revision

acs-service-contract operation. Call via acs_sc::invoke. DAV Copy Method

Returns:
response - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 oacs_dav::impl::content_revision::copy oacs_dav::impl::content_revision::copy (private) AcsSc.dav.copy.content_revision AcsSc.dav.copy.content_revision AcsSc.dav.copy.content_revision->oacs_dav::impl::content_revision::copy

Testcases:
No testcase defined.

AcsSc.dav.copy.file_storage_object (private)

 AcsSc.dav.copy.file_storage_object

acs-service-contract operation. Call via acs_sc::invoke. DAV Copy Method

Returns:
response - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 fs::impl::fs_object::copy fs::impl::fs_object::copy (private) AcsSc.dav.copy.file_storage_object AcsSc.dav.copy.file_storage_object AcsSc.dav.copy.file_storage_object->fs::impl::fs_object::copy

Testcases:
No testcase defined.

AcsSc.dav.delete.content_folder (private)

 AcsSc.dav.delete.content_folder

acs-service-contract operation. Call via acs_sc::invoke. DAV DELETE Method

Returns:
response - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 oacs_dav::impl::content_folder::delete oacs_dav::impl::content_folder::delete (private) AcsSc.dav.delete.content_folder AcsSc.dav.delete.content_folder AcsSc.dav.delete.content_folder->oacs_dav::impl::content_folder::delete

Testcases:
No testcase defined.

AcsSc.dav.delete.content_revision (private)

 AcsSc.dav.delete.content_revision

acs-service-contract operation. Call via acs_sc::invoke. DAV DELETE Method

Returns:
response - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 oacs_dav::impl::content_revision::delete oacs_dav::impl::content_revision::delete (private) AcsSc.dav.delete.content_revision AcsSc.dav.delete.content_revision AcsSc.dav.delete.content_revision->oacs_dav::impl::content_revision::delete

Testcases:
No testcase defined.

AcsSc.dav.delete.file_storage_object (private)

 AcsSc.dav.delete.file_storage_object

acs-service-contract operation. Call via acs_sc::invoke. DAV DELETE Method

Returns:
response - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 fs::impl::fs_object::delete fs::impl::fs_object::delete (private) AcsSc.dav.delete.file_storage_object AcsSc.dav.delete.file_storage_object AcsSc.dav.delete.file_storage_object->fs::impl::fs_object::delete

Testcases:
No testcase defined.

AcsSc.dav.get.content_folder (private)

 AcsSc.dav.get.content_folder

acs-service-contract operation. Call via acs_sc::invoke. DAV GET Method

Returns:
content - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 oacs_dav::impl::content_folder::get oacs_dav::impl::content_folder::get (private) AcsSc.dav.get.content_folder AcsSc.dav.get.content_folder AcsSc.dav.get.content_folder->oacs_dav::impl::content_folder::get

Testcases:
No testcase defined.

AcsSc.dav.get.content_revision (private)

 AcsSc.dav.get.content_revision

acs-service-contract operation. Call via acs_sc::invoke. DAV GET Method

Returns:
content - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 oacs_dav::impl::content_revision::get oacs_dav::impl::content_revision::get (private) AcsSc.dav.get.content_revision AcsSc.dav.get.content_revision AcsSc.dav.get.content_revision->oacs_dav::impl::content_revision::get

Testcases:
No testcase defined.

AcsSc.dav.get.file_storage_object (private)

 AcsSc.dav.get.file_storage_object

acs-service-contract operation. Call via acs_sc::invoke. DAV GET Method

Returns:
content - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 fs::impl::fs_object::get fs::impl::fs_object::get (private) AcsSc.dav.get.file_storage_object AcsSc.dav.get.file_storage_object AcsSc.dav.get.file_storage_object->fs::impl::fs_object::get

Testcases:
No testcase defined.

AcsSc.dav.head.content_folder (private)

 AcsSc.dav.head.content_folder

acs-service-contract operation. Call via acs_sc::invoke. DAV HEAD Method

Returns:
response - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 oacs_dav::impl::content_revision::head oacs_dav::impl::content_revision::head (private) AcsSc.dav.head.content_folder AcsSc.dav.head.content_folder AcsSc.dav.head.content_folder->oacs_dav::impl::content_revision::head

Testcases:
No testcase defined.

AcsSc.dav.head.content_revision (private)

 AcsSc.dav.head.content_revision

acs-service-contract operation. Call via acs_sc::invoke. DAV HEAD Method

Returns:
response - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 oacs_dav::impl::content_revision::head oacs_dav::impl::content_revision::head (private) AcsSc.dav.head.content_revision AcsSc.dav.head.content_revision AcsSc.dav.head.content_revision->oacs_dav::impl::content_revision::head

Testcases:
No testcase defined.

AcsSc.dav.head.file_storage_object (private)

 AcsSc.dav.head.file_storage_object

acs-service-contract operation. Call via acs_sc::invoke. DAV HEAD Method

Returns:
response - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 fs::impl::fs_object::head fs::impl::fs_object::head (private) AcsSc.dav.head.file_storage_object AcsSc.dav.head.file_storage_object AcsSc.dav.head.file_storage_object->fs::impl::fs_object::head

Testcases:
No testcase defined.

AcsSc.dav.lock.content_folder (private)

 AcsSc.dav.lock.content_folder

acs-service-contract operation. Call via acs_sc::invoke. DAV LOCK Method

Returns:
response - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 oacs_dav::impl::content_folder::lock oacs_dav::impl::content_folder::lock (private) AcsSc.dav.lock.content_folder AcsSc.dav.lock.content_folder AcsSc.dav.lock.content_folder->oacs_dav::impl::content_folder::lock

Testcases:
No testcase defined.

AcsSc.dav.lock.content_revision (private)

 AcsSc.dav.lock.content_revision

acs-service-contract operation. Call via acs_sc::invoke. DAV LOCK Method

Returns:
response - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 oacs_dav::impl::content_revision::lock oacs_dav::impl::content_revision::lock (private) AcsSc.dav.lock.content_revision AcsSc.dav.lock.content_revision AcsSc.dav.lock.content_revision->oacs_dav::impl::content_revision::lock

Testcases:
No testcase defined.

AcsSc.dav.lock.file_storage_object (private)

 AcsSc.dav.lock.file_storage_object

acs-service-contract operation. Call via acs_sc::invoke. DAV LOCK Method

Returns:
response - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 fs::impl::fs_object::lock fs::impl::fs_object::lock (private) AcsSc.dav.lock.file_storage_object AcsSc.dav.lock.file_storage_object AcsSc.dav.lock.file_storage_object->fs::impl::fs_object::lock

Testcases:
No testcase defined.

AcsSc.dav.mkcol.content_folder (private)

 AcsSc.dav.mkcol.content_folder

acs-service-contract operation. Call via acs_sc::invoke. DAV MKCOL Method

Returns:
response - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 oacs_dav::impl::content_folder::mkcol oacs_dav::impl::content_folder::mkcol (private) AcsSc.dav.mkcol.content_folder AcsSc.dav.mkcol.content_folder AcsSc.dav.mkcol.content_folder->oacs_dav::impl::content_folder::mkcol

Testcases:
No testcase defined.

AcsSc.dav.mkcol.content_revision (private)

 AcsSc.dav.mkcol.content_revision

acs-service-contract operation. Call via acs_sc::invoke. DAV MKCOL Method

Returns:
response - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 oacs_dav::impl::content_revision::mkcol oacs_dav::impl::content_revision::mkcol (private) AcsSc.dav.mkcol.content_revision AcsSc.dav.mkcol.content_revision AcsSc.dav.mkcol.content_revision->oacs_dav::impl::content_revision::mkcol

Testcases:
No testcase defined.

AcsSc.dav.mkcol.file_storage_object (private)

 AcsSc.dav.mkcol.file_storage_object

acs-service-contract operation. Call via acs_sc::invoke. DAV MKCOL Method

Returns:
response - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 fs::impl::fs_object::mkcol fs::impl::fs_object::mkcol (private) AcsSc.dav.mkcol.file_storage_object AcsSc.dav.mkcol.file_storage_object AcsSc.dav.mkcol.file_storage_object->fs::impl::fs_object::mkcol

Testcases:
No testcase defined.

AcsSc.dav.move.content_folder (private)

 AcsSc.dav.move.content_folder

acs-service-contract operation. Call via acs_sc::invoke. DAV Move Method

Returns:
response - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 oacs_dav::impl::content_folder::move oacs_dav::impl::content_folder::move (private) AcsSc.dav.move.content_folder AcsSc.dav.move.content_folder AcsSc.dav.move.content_folder->oacs_dav::impl::content_folder::move

Testcases:
No testcase defined.

AcsSc.dav.move.content_revision (private)

 AcsSc.dav.move.content_revision

acs-service-contract operation. Call via acs_sc::invoke. DAV Move Method

Returns:
response - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 oacs_dav::impl::content_revision::move oacs_dav::impl::content_revision::move (private) AcsSc.dav.move.content_revision AcsSc.dav.move.content_revision AcsSc.dav.move.content_revision->oacs_dav::impl::content_revision::move

Testcases:
No testcase defined.

AcsSc.dav.move.file_storage_object (private)

 AcsSc.dav.move.file_storage_object

acs-service-contract operation. Call via acs_sc::invoke. DAV Move Method

Returns:
response - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 fs::impl::fs_object::move fs::impl::fs_object::move (private) AcsSc.dav.move.file_storage_object AcsSc.dav.move.file_storage_object AcsSc.dav.move.file_storage_object->fs::impl::fs_object::move

Testcases:
No testcase defined.

AcsSc.dav.propfind.content_folder (private)

 AcsSc.dav.propfind.content_folder

acs-service-contract operation. Call via acs_sc::invoke. DAV PROPFIND Method

Returns:
response - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 oacs_dav::impl::content_folder::propfind oacs_dav::impl::content_folder::propfind (private) AcsSc.dav.propfind.content_folder AcsSc.dav.propfind.content_folder AcsSc.dav.propfind.content_folder->oacs_dav::impl::content_folder::propfind

Testcases:
No testcase defined.

AcsSc.dav.propfind.content_revision (private)

 AcsSc.dav.propfind.content_revision

acs-service-contract operation. Call via acs_sc::invoke. DAV PROPFIND Method

Returns:
response - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 oacs_dav::impl::content_revision::propfind oacs_dav::impl::content_revision::propfind (private) AcsSc.dav.propfind.content_revision AcsSc.dav.propfind.content_revision AcsSc.dav.propfind.content_revision->oacs_dav::impl::content_revision::propfind

Testcases:
No testcase defined.

AcsSc.dav.propfind.file_storage_object (private)

 AcsSc.dav.propfind.file_storage_object

acs-service-contract operation. Call via acs_sc::invoke. DAV PROPFIND Method

Returns:
response - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 fs::impl::fs_object::propfind fs::impl::fs_object::propfind (private) AcsSc.dav.propfind.file_storage_object AcsSc.dav.propfind.file_storage_object AcsSc.dav.propfind.file_storage_object->fs::impl::fs_object::propfind

Testcases:
No testcase defined.

AcsSc.dav.proppatch.content_folder (private)

 AcsSc.dav.proppatch.content_folder

acs-service-contract operation. Call via acs_sc::invoke. DAV PROPATCH Method

Returns:
response - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 oacs_dav::impl::content_folder::proppatch oacs_dav::impl::content_folder::proppatch (private) AcsSc.dav.proppatch.content_folder AcsSc.dav.proppatch.content_folder AcsSc.dav.proppatch.content_folder->oacs_dav::impl::content_folder::proppatch

Testcases:
No testcase defined.

AcsSc.dav.proppatch.content_revision (private)

 AcsSc.dav.proppatch.content_revision

acs-service-contract operation. Call via acs_sc::invoke. DAV PROPATCH Method

Returns:
response - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 oacs_dav::impl::content_revision::proppatch oacs_dav::impl::content_revision::proppatch (private) AcsSc.dav.proppatch.content_revision AcsSc.dav.proppatch.content_revision AcsSc.dav.proppatch.content_revision->oacs_dav::impl::content_revision::proppatch

Testcases:
No testcase defined.

AcsSc.dav.proppatch.file_storage_object (private)

 AcsSc.dav.proppatch.file_storage_object

acs-service-contract operation. Call via acs_sc::invoke. DAV PROPATCH Method

Returns:
response - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 fs::impl::fs_object::proppatch fs::impl::fs_object::proppatch (private) AcsSc.dav.proppatch.file_storage_object AcsSc.dav.proppatch.file_storage_object AcsSc.dav.proppatch.file_storage_object->fs::impl::fs_object::proppatch

Testcases:
No testcase defined.

AcsSc.dav.put.content_folder (private)

 AcsSc.dav.put.content_folder

acs-service-contract operation. Call via acs_sc::invoke. DAV PUT Method

Returns:
response - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 oacs_dav::impl::content_folder::put oacs_dav::impl::content_folder::put (private) AcsSc.dav.put.content_folder AcsSc.dav.put.content_folder AcsSc.dav.put.content_folder->oacs_dav::impl::content_folder::put

Testcases:
No testcase defined.

AcsSc.dav.put.content_revision (private)

 AcsSc.dav.put.content_revision

acs-service-contract operation. Call via acs_sc::invoke. DAV PUT Method

Returns:
response - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 oacs_dav::impl::content_revision::put oacs_dav::impl::content_revision::put (private) AcsSc.dav.put.content_revision AcsSc.dav.put.content_revision AcsSc.dav.put.content_revision->oacs_dav::impl::content_revision::put

Testcases:
No testcase defined.

AcsSc.dav.put.file_storage_object (private)

 AcsSc.dav.put.file_storage_object

acs-service-contract operation. Call via acs_sc::invoke. DAV PUT Method

Returns:
response - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 fs::impl::fs_object::put fs::impl::fs_object::put (private) AcsSc.dav.put.file_storage_object AcsSc.dav.put.file_storage_object AcsSc.dav.put.file_storage_object->fs::impl::fs_object::put

Testcases:
No testcase defined.

AcsSc.dav.unlock.content_folder (private)

 AcsSc.dav.unlock.content_folder

acs-service-contract operation. Call via acs_sc::invoke. DAV UNLOCK Method

Returns:
response - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 oacs_dav::impl::content_folder::unlock oacs_dav::impl::content_folder::unlock (private) AcsSc.dav.unlock.content_folder AcsSc.dav.unlock.content_folder AcsSc.dav.unlock.content_folder->oacs_dav::impl::content_folder::unlock

Testcases:
No testcase defined.

AcsSc.dav.unlock.content_revision (private)

 AcsSc.dav.unlock.content_revision

acs-service-contract operation. Call via acs_sc::invoke. DAV UNLOCK Method

Returns:
response - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 oacs_dav::impl::content_revision::unlock oacs_dav::impl::content_revision::unlock (private) AcsSc.dav.unlock.content_revision AcsSc.dav.unlock.content_revision AcsSc.dav.unlock.content_revision->oacs_dav::impl::content_revision::unlock

Testcases:
No testcase defined.

AcsSc.dav.unlock.file_storage_object (private)

 AcsSc.dav.unlock.file_storage_object

acs-service-contract operation. Call via acs_sc::invoke. DAV UNLOCK Method

Returns:
response - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 fs::impl::fs_object::unlock fs::impl::fs_object::unlock (private) AcsSc.dav.unlock.file_storage_object AcsSc.dav.unlock.file_storage_object AcsSc.dav.unlock.file_storage_object->fs::impl::fs_object::unlock

Testcases:
No testcase defined.

AcsSc.dav_mkcol_type.get_type.file_storage (private)

 AcsSc.dav_mkcol_type.get_type.file_storage

acs-service-contract operation. Call via acs_sc::invoke. DAV MKCOL Content Type

Returns:
content_type - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 fs::impl::dav_mkcol_type::get_type fs::impl::dav_mkcol_type::get_type (private) AcsSc.dav_mkcol_type.get_type.file_storage AcsSc.dav_mkcol_type.get_type.file_storage AcsSc.dav_mkcol_type.get_type.file_storage->fs::impl::dav_mkcol_type::get_type

Testcases:
No testcase defined.

AcsSc.dav_put_type.get_type.file_storage (private)

 AcsSc.dav_put_type.get_type.file_storage

acs-service-contract operation. Call via acs_sc::invoke. DAV PUT Content Type

Returns:
content_type - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 fs::impl::dav_put_type::get_type fs::impl::dav_put_type::get_type (private) AcsSc.dav_put_type.get_type.file_storage AcsSc.dav_put_type.get_type.file_storage AcsSc.dav_put_type.get_type.file_storage->fs::impl::dav_put_type::get_type

Testcases:
No testcase defined.

AcsSc.ftscontentprovider.datasource.bt_bug (private)

 AcsSc.ftscontentprovider.datasource.bt_bug object_id

acs-service-contract operation. Call via acs_sc::invoke. Data Source

Parameters:
object_id - integer
Returns:
object_id - integer
title - string
content - string
mime - string
storage_type - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 bug_tracker::search::bug::datasource bug_tracker::search::bug::datasource (private) AcsSc.ftscontentprovider.datasource.bt_bug AcsSc.ftscontentprovider.datasource.bt_bug AcsSc.ftscontentprovider.datasource.bt_bug->bug_tracker::search::bug::datasource

Testcases:
No testcase defined.

AcsSc.ftscontentprovider.datasource.bt_patch (private)

 AcsSc.ftscontentprovider.datasource.bt_patch object_id

acs-service-contract operation. Call via acs_sc::invoke. Data Source

Parameters:
object_id - integer
Returns:
object_id - integer
title - string
content - string
mime - string
storage_type - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 bug_tracker::search::patch::datasource bug_tracker::search::patch::datasource (private) AcsSc.ftscontentprovider.datasource.bt_patch AcsSc.ftscontentprovider.datasource.bt_patch AcsSc.ftscontentprovider.datasource.bt_patch->bug_tracker::search::patch::datasource

Testcases:
No testcase defined.

AcsSc.ftscontentprovider.datasource.cal_item (private)

 AcsSc.ftscontentprovider.datasource.cal_item object_id

acs-service-contract operation. Call via acs_sc::invoke. Data Source

Parameters:
object_id - integer
Returns:
object_id - integer
title - string
content - string
mime - string
storage_type - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 calendar::fts::datasource calendar::fts::datasource (private) AcsSc.ftscontentprovider.datasource.cal_item AcsSc.ftscontentprovider.datasource.cal_item AcsSc.ftscontentprovider.datasource.cal_item->calendar::fts::datasource

Testcases:
No testcase defined.

AcsSc.ftscontentprovider.datasource.etp_page_revision (private)

 AcsSc.ftscontentprovider.datasource.etp_page_revision object_id

acs-service-contract operation. Call via acs_sc::invoke. Data Source

Parameters:
object_id - integer
Returns:
object_id - integer
title - string
content - string
mime - string
storage_type - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 etp::revision_datasource etp::revision_datasource (public) AcsSc.ftscontentprovider.datasource.etp_page_revision AcsSc.ftscontentprovider.datasource.etp_page_revision AcsSc.ftscontentprovider.datasource.etp_page_revision->etp::revision_datasource

Testcases:
No testcase defined.

AcsSc.ftscontentprovider.datasource.faq (private)

 AcsSc.ftscontentprovider.datasource.faq object_id

acs-service-contract operation. Call via acs_sc::invoke. Data Source

Parameters:
object_id - integer
Returns:
object_id - integer
title - string
content - string
mime - string
storage_type - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 faq::fts::datasource faq::fts::datasource (private) AcsSc.ftscontentprovider.datasource.faq AcsSc.ftscontentprovider.datasource.faq AcsSc.ftscontentprovider.datasource.faq->faq::fts::datasource

Testcases:
No testcase defined.

AcsSc.ftscontentprovider.datasource.faq_q_and_a (private)

 AcsSc.ftscontentprovider.datasource.faq_q_and_a object_id

acs-service-contract operation. Call via acs_sc::invoke. Data Source

Parameters:
object_id - integer
Returns:
object_id - integer
title - string
content - string
mime - string
storage_type - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 faq_qanda::fts::datasource faq_qanda::fts::datasource (private) AcsSc.ftscontentprovider.datasource.faq_q_and_a AcsSc.ftscontentprovider.datasource.faq_q_and_a AcsSc.ftscontentprovider.datasource.faq_q_and_a->faq_qanda::fts::datasource

Testcases:
No testcase defined.

AcsSc.ftscontentprovider.datasource.journal_article (private)

 AcsSc.ftscontentprovider.datasource.journal_article object_id

acs-service-contract operation. Call via acs_sc::invoke. Data Source

Parameters:
object_id - integer
Returns:
object_id - integer
title - string
content - string
mime - string
storage_type - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 etp::revision_datasource etp::revision_datasource (public) AcsSc.ftscontentprovider.datasource.journal_article AcsSc.ftscontentprovider.datasource.journal_article AcsSc.ftscontentprovider.datasource.journal_article->etp::revision_datasource

Testcases:
No testcase defined.

AcsSc.ftscontentprovider.datasource.journal_issue (private)

 AcsSc.ftscontentprovider.datasource.journal_issue object_id

acs-service-contract operation. Call via acs_sc::invoke. Data Source

Parameters:
object_id - integer
Returns:
object_id - integer
title - string
content - string
mime - string
storage_type - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 etp::revision_datasource etp::revision_datasource (public) AcsSc.ftscontentprovider.datasource.journal_issue AcsSc.ftscontentprovider.datasource.journal_issue AcsSc.ftscontentprovider.datasource.journal_issue->etp::revision_datasource

Testcases:
No testcase defined.

AcsSc.ftscontentprovider.datasource.news_item (private)

 AcsSc.ftscontentprovider.datasource.news_item object_id

acs-service-contract operation. Call via acs_sc::invoke. Data Source

Parameters:
object_id - integer
Returns:
object_id - integer
title - string
content - string
mime - string
storage_type - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 etp::revision_datasource etp::revision_datasource (public) AcsSc.ftscontentprovider.datasource.news_item AcsSc.ftscontentprovider.datasource.news_item AcsSc.ftscontentprovider.datasource.news_item->etp::revision_datasource

Testcases:
No testcase defined.

AcsSc.ftscontentprovider.datasource.pa_album (private)

 AcsSc.ftscontentprovider.datasource.pa_album object_id

acs-service-contract operation. Call via acs_sc::invoke. Data Source

Parameters:
object_id - integer
Returns:
object_id - integer
title - string
content - string
mime - string
storage_type - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 photo_album::search::album::datasource photo_album::search::album::datasource (private) AcsSc.ftscontentprovider.datasource.pa_album AcsSc.ftscontentprovider.datasource.pa_album AcsSc.ftscontentprovider.datasource.pa_album->photo_album::search::album::datasource

Testcases:
No testcase defined.

AcsSc.ftscontentprovider.datasource.pa_photo (private)

 AcsSc.ftscontentprovider.datasource.pa_photo object_id

acs-service-contract operation. Call via acs_sc::invoke. Data Source

Parameters:
object_id - integer
Returns:
object_id - integer
title - string
content - string
mime - string
storage_type - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 photo_album::search::photo::datasource photo_album::search::photo::datasource (private) AcsSc.ftscontentprovider.datasource.pa_photo AcsSc.ftscontentprovider.datasource.pa_photo AcsSc.ftscontentprovider.datasource.pa_photo->photo_album::search::photo::datasource

Testcases:
No testcase defined.

AcsSc.ftscontentprovider.datasource.xowiki_formpage (private)

 AcsSc.ftscontentprovider.datasource.xowiki_formpage object_id

acs-service-contract operation. Call via acs_sc::invoke. Data Source

Parameters:
object_id - integer
Returns:
object_id - integer
title - string
content - string
mime - string
storage_type - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 xowiki::datasource xowiki::datasource (private) AcsSc.ftscontentprovider.datasource.xowiki_formpage AcsSc.ftscontentprovider.datasource.xowiki_formpage AcsSc.ftscontentprovider.datasource.xowiki_formpage->xowiki::datasource

Testcases:
No testcase defined.

AcsSc.ftscontentprovider.datasource.xowiki_page (private)

 AcsSc.ftscontentprovider.datasource.xowiki_page object_id

acs-service-contract operation. Call via acs_sc::invoke. Data Source

Parameters:
object_id - integer
Returns:
object_id - integer
title - string
content - string
mime - string
storage_type - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 xowiki::datasource xowiki::datasource (private) AcsSc.ftscontentprovider.datasource.xowiki_page AcsSc.ftscontentprovider.datasource.xowiki_page AcsSc.ftscontentprovider.datasource.xowiki_page->xowiki::datasource

Testcases:
No testcase defined.

AcsSc.ftscontentprovider.datasource.xowiki_pageinstance (private)

 AcsSc.ftscontentprovider.datasource.xowiki_pageinstance object_id

acs-service-contract operation. Call via acs_sc::invoke. Data Source

Parameters:
object_id - integer
Returns:
object_id - integer
title - string
content - string
mime - string
storage_type - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 xowiki::datasource xowiki::datasource (private) AcsSc.ftscontentprovider.datasource.xowiki_pageinstance AcsSc.ftscontentprovider.datasource.xowiki_pageinstance AcsSc.ftscontentprovider.datasource.xowiki_pageinstance->xowiki::datasource

Testcases:
No testcase defined.

AcsSc.ftscontentprovider.datasource.xowiki_plainpage (private)

 AcsSc.ftscontentprovider.datasource.xowiki_plainpage object_id

acs-service-contract operation. Call via acs_sc::invoke. Data Source

Parameters:
object_id - integer
Returns:
object_id - integer
title - string
content - string
mime - string
storage_type - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 xowiki::datasource xowiki::datasource (private) AcsSc.ftscontentprovider.datasource.xowiki_plainpage AcsSc.ftscontentprovider.datasource.xowiki_plainpage AcsSc.ftscontentprovider.datasource.xowiki_plainpage->xowiki::datasource

Testcases:
No testcase defined.

AcsSc.ftscontentprovider.url.bt_bug (private)

 AcsSc.ftscontentprovider.url.bt_bug object_id

acs-service-contract operation. Call via acs_sc::invoke. URL

Parameters:
object_id - integer
Returns:
url - uri
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 bug_tracker::search::bug::url bug_tracker::search::bug::url (private) AcsSc.ftscontentprovider.url.bt_bug AcsSc.ftscontentprovider.url.bt_bug AcsSc.ftscontentprovider.url.bt_bug->bug_tracker::search::bug::url

Testcases:
No testcase defined.

AcsSc.ftscontentprovider.url.bt_patch (private)

 AcsSc.ftscontentprovider.url.bt_patch object_id

acs-service-contract operation. Call via acs_sc::invoke. URL

Parameters:
object_id - integer
Returns:
url - uri
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 bug_tracker::search::patch::url bug_tracker::search::patch::url (private) AcsSc.ftscontentprovider.url.bt_patch AcsSc.ftscontentprovider.url.bt_patch AcsSc.ftscontentprovider.url.bt_patch->bug_tracker::search::patch::url

Testcases:
No testcase defined.

AcsSc.ftscontentprovider.url.cal_item (private)

 AcsSc.ftscontentprovider.url.cal_item object_id

acs-service-contract operation. Call via acs_sc::invoke. URL

Parameters:
object_id - integer
Returns:
url - uri
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 calendar::fts::url calendar::fts::url (private) AcsSc.ftscontentprovider.url.cal_item AcsSc.ftscontentprovider.url.cal_item AcsSc.ftscontentprovider.url.cal_item->calendar::fts::url

Testcases:
No testcase defined.

AcsSc.ftscontentprovider.url.etp_page_revision (private)

 AcsSc.ftscontentprovider.url.etp_page_revision object_id

acs-service-contract operation. Call via acs_sc::invoke. URL

Parameters:
object_id - integer
Returns:
url - uri
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 etp::revision_url etp::revision_url (public) AcsSc.ftscontentprovider.url.etp_page_revision AcsSc.ftscontentprovider.url.etp_page_revision AcsSc.ftscontentprovider.url.etp_page_revision->etp::revision_url

Testcases:
No testcase defined.

AcsSc.ftscontentprovider.url.faq (private)

 AcsSc.ftscontentprovider.url.faq object_id

acs-service-contract operation. Call via acs_sc::invoke. URL

Parameters:
object_id - integer
Returns:
url - uri
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 faq::fts::url faq::fts::url (private) AcsSc.ftscontentprovider.url.faq AcsSc.ftscontentprovider.url.faq AcsSc.ftscontentprovider.url.faq->faq::fts::url

Testcases:
No testcase defined.

AcsSc.ftscontentprovider.url.faq_q_and_a (private)

 AcsSc.ftscontentprovider.url.faq_q_and_a object_id

acs-service-contract operation. Call via acs_sc::invoke. URL

Parameters:
object_id - integer
Returns:
url - uri
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 faq_qanda::fts::url faq_qanda::fts::url (private) AcsSc.ftscontentprovider.url.faq_q_and_a AcsSc.ftscontentprovider.url.faq_q_and_a AcsSc.ftscontentprovider.url.faq_q_and_a->faq_qanda::fts::url

Testcases:
No testcase defined.

AcsSc.ftscontentprovider.url.journal_article (private)

 AcsSc.ftscontentprovider.url.journal_article object_id

acs-service-contract operation. Call via acs_sc::invoke. URL

Parameters:
object_id - integer
Returns:
url - uri
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 etp::revision_url etp::revision_url (public) AcsSc.ftscontentprovider.url.journal_article AcsSc.ftscontentprovider.url.journal_article AcsSc.ftscontentprovider.url.journal_article->etp::revision_url

Testcases:
No testcase defined.

AcsSc.ftscontentprovider.url.journal_issue (private)

 AcsSc.ftscontentprovider.url.journal_issue object_id

acs-service-contract operation. Call via acs_sc::invoke. URL

Parameters:
object_id - integer
Returns:
url - uri
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 etp::revision_url etp::revision_url (public) AcsSc.ftscontentprovider.url.journal_issue AcsSc.ftscontentprovider.url.journal_issue AcsSc.ftscontentprovider.url.journal_issue->etp::revision_url

Testcases:
No testcase defined.

AcsSc.ftscontentprovider.url.news_item (private)

 AcsSc.ftscontentprovider.url.news_item object_id

acs-service-contract operation. Call via acs_sc::invoke. URL

Parameters:
object_id - integer
Returns:
url - uri
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 etp::revision_url etp::revision_url (public) AcsSc.ftscontentprovider.url.news_item AcsSc.ftscontentprovider.url.news_item AcsSc.ftscontentprovider.url.news_item->etp::revision_url

Testcases:
No testcase defined.

AcsSc.ftscontentprovider.url.pa_album (private)

 AcsSc.ftscontentprovider.url.pa_album object_id

acs-service-contract operation. Call via acs_sc::invoke. URL

Parameters:
object_id - integer
Returns:
url - uri
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 photo_album::search::album::url photo_album::search::album::url (private) AcsSc.ftscontentprovider.url.pa_album AcsSc.ftscontentprovider.url.pa_album AcsSc.ftscontentprovider.url.pa_album->photo_album::search::album::url

Testcases:
No testcase defined.

AcsSc.ftscontentprovider.url.pa_photo (private)

 AcsSc.ftscontentprovider.url.pa_photo object_id

acs-service-contract operation. Call via acs_sc::invoke. URL

Parameters:
object_id - integer
Returns:
url - uri
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 photo_album::search::photo::url photo_album::search::photo::url (private) AcsSc.ftscontentprovider.url.pa_photo AcsSc.ftscontentprovider.url.pa_photo AcsSc.ftscontentprovider.url.pa_photo->photo_album::search::photo::url

Testcases:
No testcase defined.

AcsSc.ftscontentprovider.url.xowiki_formpage (private)

 AcsSc.ftscontentprovider.url.xowiki_formpage object_id

acs-service-contract operation. Call via acs_sc::invoke. URL

Parameters:
object_id - integer
Returns:
url - uri
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 xowiki::url xowiki::url (private) AcsSc.ftscontentprovider.url.xowiki_formpage AcsSc.ftscontentprovider.url.xowiki_formpage AcsSc.ftscontentprovider.url.xowiki_formpage->xowiki::url

Testcases:
No testcase defined.

AcsSc.ftscontentprovider.url.xowiki_page (private)

 AcsSc.ftscontentprovider.url.xowiki_page object_id

acs-service-contract operation. Call via acs_sc::invoke. URL

Parameters:
object_id - integer
Returns:
url - uri
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 xowiki::url xowiki::url (private) AcsSc.ftscontentprovider.url.xowiki_page AcsSc.ftscontentprovider.url.xowiki_page AcsSc.ftscontentprovider.url.xowiki_page->xowiki::url

Testcases:
No testcase defined.

AcsSc.ftscontentprovider.url.xowiki_pageinstance (private)

 AcsSc.ftscontentprovider.url.xowiki_pageinstance object_id

acs-service-contract operation. Call via acs_sc::invoke. URL

Parameters:
object_id - integer
Returns:
url - uri
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 xowiki::url xowiki::url (private) AcsSc.ftscontentprovider.url.xowiki_pageinstance AcsSc.ftscontentprovider.url.xowiki_pageinstance AcsSc.ftscontentprovider.url.xowiki_pageinstance->xowiki::url

Testcases:
No testcase defined.

AcsSc.ftscontentprovider.url.xowiki_plainpage (private)

 AcsSc.ftscontentprovider.url.xowiki_plainpage object_id

acs-service-contract operation. Call via acs_sc::invoke. URL

Parameters:
object_id - integer
Returns:
url - uri
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 xowiki::url xowiki::url (private) AcsSc.ftscontentprovider.url.xowiki_plainpage AcsSc.ftscontentprovider.url.xowiki_plainpage AcsSc.ftscontentprovider.url.xowiki_plainpage->xowiki::url

Testcases:
No testcase defined.

AcsSc.ftsenginedriver.index.tsearch2_driver (private)

 AcsSc.ftsenginedriver.index.tsearch2_driver object_id txt title \
    keywords

acs-service-contract operation. Call via acs_sc::invoke. Index

Parameters:
object_id - integer
txt - string
title - string
keywords - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 tsearch2::index tsearch2::index (public) AcsSc.ftsenginedriver.index.tsearch2_driver AcsSc.ftsenginedriver.index.tsearch2_driver AcsSc.ftsenginedriver.index.tsearch2_driver->tsearch2::index

Testcases:
No testcase defined.

AcsSc.ftsenginedriver.info.tsearch2_driver (private)

 AcsSc.ftsenginedriver.info.tsearch2_driver

acs-service-contract operation. Call via acs_sc::invoke. Information about the driver

Returns:
package_key - string
version - version
automatic_and_queries_p - boolean
stopwords_p - boolean
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 tsearch2::driver_info tsearch2::driver_info (private) AcsSc.ftsenginedriver.info.tsearch2_driver AcsSc.ftsenginedriver.info.tsearch2_driver AcsSc.ftsenginedriver.info.tsearch2_driver->tsearch2::driver_info

Testcases:
No testcase defined.

AcsSc.ftsenginedriver.search.tsearch2_driver (private)

 AcsSc.ftsenginedriver.search.tsearch2_driver query offset limit \
    user_id df dt

acs-service-contract operation. Call via acs_sc::invoke. Search

Parameters:
query - string
offset - integer
limit - integer
user_id - integer
df - timestamp
dt - timestamp
Returns:
ids - integer []
stopwords - string []
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3

Testcases:
No testcase defined.

AcsSc.ftsenginedriver.summary.tsearch2_driver (private)

 AcsSc.ftsenginedriver.summary.tsearch2_driver query txt

acs-service-contract operation. Call via acs_sc::invoke. Summary

Parameters:
query - string
txt - string
Returns:
summary - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 tsearch2::summary tsearch2::summary (public) AcsSc.ftsenginedriver.summary.tsearch2_driver AcsSc.ftsenginedriver.summary.tsearch2_driver AcsSc.ftsenginedriver.summary.tsearch2_driver->tsearch2::summary

Testcases:
No testcase defined.

AcsSc.ftsenginedriver.unindex.tsearch2_driver (private)

 AcsSc.ftsenginedriver.unindex.tsearch2_driver object_id

acs-service-contract operation. Call via acs_sc::invoke. Unindex

Parameters:
object_id - integer
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 tsearch2::unindex tsearch2::unindex (public) AcsSc.ftsenginedriver.unindex.tsearch2_driver AcsSc.ftsenginedriver.unindex.tsearch2_driver AcsSc.ftsenginedriver.unindex.tsearch2_driver->tsearch2::unindex

Testcases:
No testcase defined.

AcsSc.ftsenginedriver.update_index.tsearch2_driver (private)

 AcsSc.ftsenginedriver.update_index.tsearch2_driver object_id txt title \
    keywords

acs-service-contract operation. Call via acs_sc::invoke. Update Index

Parameters:
object_id - integer
txt - string
title - string
keywords - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 tsearch2::index tsearch2::index (public) AcsSc.ftsenginedriver.update_index.tsearch2_driver AcsSc.ftsenginedriver.update_index.tsearch2_driver AcsSc.ftsenginedriver.update_index.tsearch2_driver->tsearch2::index

Testcases:
No testcase defined.

AcsSc.notificationdeliverymethod.scanreplies.notification_email (private)

 AcsSc.notificationdeliverymethod.scanreplies.notification_email

acs-service-contract operation. Call via acs_sc::invoke. Scan for replies

See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 notification::email::scan_replies notification::email::scan_replies (private) AcsSc.notificationdeliverymethod.scanreplies.notification_email AcsSc.notificationdeliverymethod.scanreplies.notification_email AcsSc.notificationdeliverymethod.scanreplies.notification_email->notification::email::scan_replies

Testcases:
No testcase defined.

AcsSc.notificationdeliverymethod.send.notification_email (private)

 AcsSc.notificationdeliverymethod.send.notification_email from_user_id \
    to_user_id reply_object_id notification_type_id subject \
    content_text content_html file_ids

acs-service-contract operation. Call via acs_sc::invoke. Send a notification

Parameters:
from_user_id - integer
to_user_id - integer
reply_object_id - integer
notification_type_id - integer
subject - string
content_text - string
content_html - string
file_ids - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 notification::email::send notification::email::send (public) AcsSc.notificationdeliverymethod.send.notification_email AcsSc.notificationdeliverymethod.send.notification_email AcsSc.notificationdeliverymethod.send.notification_email->notification::email::send

Testcases:
No testcase defined.

AcsSc.notificationtype.geturl.all_faq_qa_notif_type (private)

 AcsSc.notificationtype.geturl.all_faq_qa_notif_type object_id

acs-service-contract operation. Call via acs_sc::invoke. gets the URL for an object in this notification type

Parameters:
object_id - integer
Returns:
url - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 faq::notification::get_url faq::notification::get_url (private) AcsSc.notificationtype.geturl.all_faq_qa_notif_type AcsSc.notificationtype.geturl.all_faq_qa_notif_type AcsSc.notificationtype.geturl.all_faq_qa_notif_type->faq::notification::get_url

Testcases:
No testcase defined.

AcsSc.notificationtype.geturl.calendar_notif_type (private)

 AcsSc.notificationtype.geturl.calendar_notif_type object_id

acs-service-contract operation. Call via acs_sc::invoke. gets the URL for an object in this notification type

Parameters:
object_id - integer
Returns:
url - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 calendar::notification::get_url calendar::notification::get_url (public) AcsSc.notificationtype.geturl.calendar_notif_type AcsSc.notificationtype.geturl.calendar_notif_type AcsSc.notificationtype.geturl.calendar_notif_type->calendar::notification::get_url

Testcases:
No testcase defined.

AcsSc.notificationtype.geturl.forums_forum_moderator_notif_type (private)

 AcsSc.notificationtype.geturl.forums_forum_moderator_notif_type \
    object_id

acs-service-contract operation. Call via acs_sc::invoke. gets the URL for an object in this notification type

Parameters:
object_id - integer
Returns:
url - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 forum::notification::get_url forum::notification::get_url (private) AcsSc.notificationtype.geturl.forums_forum_moderator_notif_type AcsSc.notificationtype.geturl.forums_forum_moderator_notif_type AcsSc.notificationtype.geturl.forums_forum_moderator_notif_type->forum::notification::get_url

Testcases:
No testcase defined.

AcsSc.notificationtype.geturl.forums_forum_notif_type (private)

 AcsSc.notificationtype.geturl.forums_forum_notif_type object_id

acs-service-contract operation. Call via acs_sc::invoke. gets the URL for an object in this notification type

Parameters:
object_id - integer
Returns:
url - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 forum::notification::get_url forum::notification::get_url (private) AcsSc.notificationtype.geturl.forums_forum_notif_type AcsSc.notificationtype.geturl.forums_forum_notif_type AcsSc.notificationtype.geturl.forums_forum_notif_type->forum::notification::get_url

Testcases:
No testcase defined.

AcsSc.notificationtype.geturl.forums_message_moderator_notif_type (private)

 AcsSc.notificationtype.geturl.forums_message_moderator_notif_type \
    object_id

acs-service-contract operation. Call via acs_sc::invoke. gets the URL for an object in this notification type

Parameters:
object_id - integer
Returns:
url - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 forum::notification::get_url forum::notification::get_url (private) AcsSc.notificationtype.geturl.forums_message_moderator_notif_type AcsSc.notificationtype.geturl.forums_message_moderator_notif_type AcsSc.notificationtype.geturl.forums_message_moderator_notif_type->forum::notification::get_url

Testcases:
No testcase defined.

AcsSc.notificationtype.geturl.forums_message_notif_type (private)

 AcsSc.notificationtype.geturl.forums_message_notif_type object_id

acs-service-contract operation. Call via acs_sc::invoke. gets the URL for an object in this notification type

Parameters:
object_id - integer
Returns:
url - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 forum::notification::get_url forum::notification::get_url (private) AcsSc.notificationtype.geturl.forums_message_notif_type AcsSc.notificationtype.geturl.forums_message_notif_type AcsSc.notificationtype.geturl.forums_message_notif_type->forum::notification::get_url

Testcases:
No testcase defined.

AcsSc.notificationtype.geturl.fs_fs_notif_type (private)

 AcsSc.notificationtype.geturl.fs_fs_notif_type object_id

acs-service-contract operation. Call via acs_sc::invoke. gets the URL for an object in this notification type

Parameters:
object_id - integer
Returns:
url - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 fs::notification::get_url fs::notification::get_url (private) AcsSc.notificationtype.geturl.fs_fs_notif_type AcsSc.notificationtype.geturl.fs_fs_notif_type AcsSc.notificationtype.geturl.fs_fs_notif_type->fs::notification::get_url

Testcases:
No testcase defined.

AcsSc.notificationtype.geturl.lars_blogger_notif_type (private)

 AcsSc.notificationtype.geturl.lars_blogger_notif_type object_id

acs-service-contract operation. Call via acs_sc::invoke. gets the URL for an object in this notification type

Parameters:
object_id - integer
Returns:
url - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3

Testcases:
No testcase defined.

AcsSc.notificationtype.geturl.news_item_notif_type (private)

 AcsSc.notificationtype.geturl.news_item_notif_type object_id

acs-service-contract operation. Call via acs_sc::invoke. gets the URL for an object in this notification type

Parameters:
object_id - integer
Returns:
url - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 news_notification_get_url news_notification_get_url (public) AcsSc.notificationtype.geturl.news_item_notif_type AcsSc.notificationtype.geturl.news_item_notif_type AcsSc.notificationtype.geturl.news_item_notif_type->news_notification_get_url

Testcases:
No testcase defined.

AcsSc.notificationtype.geturl.one_faq_qa_notif_type (private)

 AcsSc.notificationtype.geturl.one_faq_qa_notif_type object_id

acs-service-contract operation. Call via acs_sc::invoke. gets the URL for an object in this notification type

Parameters:
object_id - integer
Returns:
url - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 faq::notification::get_url faq::notification::get_url (private) AcsSc.notificationtype.geturl.one_faq_qa_notif_type AcsSc.notificationtype.geturl.one_faq_qa_notif_type AcsSc.notificationtype.geturl.one_faq_qa_notif_type->faq::notification::get_url

Testcases:
No testcase defined.

AcsSc.notificationtype.geturl.workflownotificationtype (private)

 AcsSc.notificationtype.geturl.workflownotificationtype object_id

acs-service-contract operation. Call via acs_sc::invoke. gets the URL for an object in this notification type

Parameters:
object_id - integer
Returns:
url - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 workflow::impl::notification::get_url workflow::impl::notification::get_url (public) AcsSc.notificationtype.geturl.workflownotificationtype AcsSc.notificationtype.geturl.workflownotificationtype AcsSc.notificationtype.geturl.workflownotificationtype->workflow::impl::notification::get_url

Testcases:
No testcase defined.

AcsSc.notificationtype.geturl.xowiki_notif_type (private)

 AcsSc.notificationtype.geturl.xowiki_notif_type object_id

acs-service-contract operation. Call via acs_sc::invoke. gets the URL for an object in this notification type

Parameters:
object_id - integer
Returns:
url - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 xowiki::notification::get_url xowiki::notification::get_url (private) AcsSc.notificationtype.geturl.xowiki_notif_type AcsSc.notificationtype.geturl.xowiki_notif_type AcsSc.notificationtype.geturl.xowiki_notif_type->xowiki::notification::get_url

Testcases:
No testcase defined.

AcsSc.notificationtype.processreply.all_faq_qa_notif_type (private)

 AcsSc.notificationtype.processreply.all_faq_qa_notif_type reply_id

acs-service-contract operation. Call via acs_sc::invoke. Process a single reply

Parameters:
reply_id - integer
Returns:
success_p - boolean
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3

Testcases:
No testcase defined.

AcsSc.notificationtype.processreply.calendar_notif_type (private)

 AcsSc.notificationtype.processreply.calendar_notif_type reply_id

acs-service-contract operation. Call via acs_sc::invoke. Process a single reply

Parameters:
reply_id - integer
Returns:
success_p - boolean
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3

Testcases:
No testcase defined.

AcsSc.notificationtype.processreply.forums_forum_moderator_notif_type (private)

 AcsSc.notificationtype.processreply.forums_forum_moderator_notif_type \
    reply_id

acs-service-contract operation. Call via acs_sc::invoke. Process a single reply

Parameters:
reply_id - integer
Returns:
success_p - boolean
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 forum::notification::process_reply forum::notification::process_reply (private) AcsSc.notificationtype.processreply.forums_forum_moderator_notif_type AcsSc.notificationtype.processreply.forums_forum_moderator_notif_type AcsSc.notificationtype.processreply.forums_forum_moderator_notif_type->forum::notification::process_reply

Testcases:
No testcase defined.

AcsSc.notificationtype.processreply.forums_forum_notif_type (private)

 AcsSc.notificationtype.processreply.forums_forum_notif_type reply_id

acs-service-contract operation. Call via acs_sc::invoke. Process a single reply

Parameters:
reply_id - integer
Returns:
success_p - boolean
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 forum::notification::process_reply forum::notification::process_reply (private) AcsSc.notificationtype.processreply.forums_forum_notif_type AcsSc.notificationtype.processreply.forums_forum_notif_type AcsSc.notificationtype.processreply.forums_forum_notif_type->forum::notification::process_reply

Testcases:
No testcase defined.

AcsSc.notificationtype.processreply.forums_message_moderator_notif_type (private)

 AcsSc.notificationtype.processreply.forums_message_moderator_notif_type \
    reply_id

acs-service-contract operation. Call via acs_sc::invoke. Process a single reply

Parameters:
reply_id - integer
Returns:
success_p - boolean
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 forum::notification::process_reply forum::notification::process_reply (private) AcsSc.notificationtype.processreply.forums_message_moderator_notif_type AcsSc.notificationtype.processreply.forums_message_moderator_notif_type AcsSc.notificationtype.processreply.forums_message_moderator_notif_type->forum::notification::process_reply

Testcases:
No testcase defined.

AcsSc.notificationtype.processreply.forums_message_notif_type (private)

 AcsSc.notificationtype.processreply.forums_message_notif_type reply_id

acs-service-contract operation. Call via acs_sc::invoke. Process a single reply

Parameters:
reply_id - integer
Returns:
success_p - boolean
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 forum::notification::process_reply forum::notification::process_reply (private) AcsSc.notificationtype.processreply.forums_message_notif_type AcsSc.notificationtype.processreply.forums_message_notif_type AcsSc.notificationtype.processreply.forums_message_notif_type->forum::notification::process_reply

Testcases:
No testcase defined.

AcsSc.notificationtype.processreply.fs_fs_notif_type (private)

 AcsSc.notificationtype.processreply.fs_fs_notif_type reply_id

acs-service-contract operation. Call via acs_sc::invoke. Process a single reply

Parameters:
reply_id - integer
Returns:
success_p - boolean
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3

Testcases:
No testcase defined.

AcsSc.notificationtype.processreply.lars_blogger_notif_type (private)

 AcsSc.notificationtype.processreply.lars_blogger_notif_type reply_id

acs-service-contract operation. Call via acs_sc::invoke. Process a single reply

Parameters:
reply_id - integer
Returns:
success_p - boolean
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3

Testcases:
No testcase defined.

AcsSc.notificationtype.processreply.news_item_notif_type (private)

 AcsSc.notificationtype.processreply.news_item_notif_type reply_id

acs-service-contract operation. Call via acs_sc::invoke. Process a single reply

Parameters:
reply_id - integer
Returns:
success_p - boolean
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3

Testcases:
No testcase defined.

AcsSc.notificationtype.processreply.one_faq_qa_notif_type (private)

 AcsSc.notificationtype.processreply.one_faq_qa_notif_type reply_id

acs-service-contract operation. Call via acs_sc::invoke. Process a single reply

Parameters:
reply_id - integer
Returns:
success_p - boolean
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3

Testcases:
No testcase defined.

AcsSc.notificationtype.processreply.workflownotificationtype (private)

 AcsSc.notificationtype.processreply.workflownotificationtype reply_id

acs-service-contract operation. Call via acs_sc::invoke. Process a single reply

Parameters:
reply_id - integer
Returns:
success_p - boolean
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 workflow::impl::notification::process_reply workflow::impl::notification::process_reply (public) AcsSc.notificationtype.processreply.workflownotificationtype AcsSc.notificationtype.processreply.workflownotificationtype AcsSc.notificationtype.processreply.workflownotificationtype->workflow::impl::notification::process_reply

Testcases:
No testcase defined.

AcsSc.notificationtype.processreply.xowiki_notif_type (private)

 AcsSc.notificationtype.processreply.xowiki_notif_type reply_id

acs-service-contract operation. Call via acs_sc::invoke. Process a single reply

Parameters:
reply_id - integer
Returns:
success_p - boolean
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 xowiki::notification::process_reply xowiki::notification::process_reply (private) AcsSc.notificationtype.processreply.xowiki_notif_type AcsSc.notificationtype.processreply.xowiki_notif_type AcsSc.notificationtype.processreply.xowiki_notif_type->xowiki::notification::process_reply

Testcases:
No testcase defined.

AcsSc.rssgenerationsubscriber.datasource.fs_rss (private)

 AcsSc.rssgenerationsubscriber.datasource.fs_rss summary_context_id

acs-service-contract operation. Call via acs_sc::invoke. Data Source

Parameters:
summary_context_id - string
Returns:
version - string
channel_title - string
channel_link - uri
channel_description - string
image - string
items - string
channel_language - string
channel_copyright - string
channel_managingEditor - string
channel_webMaster - string
channel_rating - string
channel_pubDate - timestamp
channel_lastBuildDate - timestamp
channel_skipDays - integer
channel_skipHours - integer
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 fs::rss::datasource fs::rss::datasource (private) AcsSc.rssgenerationsubscriber.datasource.fs_rss AcsSc.rssgenerationsubscriber.datasource.fs_rss AcsSc.rssgenerationsubscriber.datasource.fs_rss->fs::rss::datasource

Testcases:
No testcase defined.

AcsSc.rssgenerationsubscriber.datasource.news (private)

 AcsSc.rssgenerationsubscriber.datasource.news summary_context_id

acs-service-contract operation. Call via acs_sc::invoke. Data Source

Parameters:
summary_context_id - string
Returns:
version - string
channel_title - string
channel_link - uri
channel_description - string
image - string
items - string
channel_language - string
channel_copyright - string
channel_managingEditor - string
channel_webMaster - string
channel_rating - string
channel_pubDate - timestamp
channel_lastBuildDate - timestamp
channel_skipDays - integer
channel_skipHours - integer
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 news__rss_datasource news__rss_datasource (private) AcsSc.rssgenerationsubscriber.datasource.news AcsSc.rssgenerationsubscriber.datasource.news AcsSc.rssgenerationsubscriber.datasource.news->news__rss_datasource

Testcases:
No testcase defined.

AcsSc.rssgenerationsubscriber.lastupdated.fs_rss (private)

 AcsSc.rssgenerationsubscriber.lastupdated.fs_rss summary_context_id

acs-service-contract operation. Call via acs_sc::invoke. Last Updated

Parameters:
summary_context_id - string
Returns:
lastupdate - timestamp
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 fs::rss::lastUpdated fs::rss::lastUpdated (private) AcsSc.rssgenerationsubscriber.lastupdated.fs_rss AcsSc.rssgenerationsubscriber.lastupdated.fs_rss AcsSc.rssgenerationsubscriber.lastupdated.fs_rss->fs::rss::lastUpdated

Testcases:
No testcase defined.

AcsSc.rssgenerationsubscriber.lastupdated.news (private)

 AcsSc.rssgenerationsubscriber.lastupdated.news summary_context_id

acs-service-contract operation. Call via acs_sc::invoke. Last Updated

Parameters:
summary_context_id - string
Returns:
lastupdate - timestamp
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 news__last_updated news__last_updated (private) AcsSc.rssgenerationsubscriber.lastupdated.news AcsSc.rssgenerationsubscriber.lastupdated.news AcsSc.rssgenerationsubscriber.lastupdated.news->news__last_updated

Testcases:
No testcase defined.

AcsSc.workflow_action_sideeffect.dosideeffect.captureresolutioncode (private)

 AcsSc.workflow_action_sideeffect.dosideeffect.captureresolutioncode \
    case_id object_id action_id entry_id

acs-service-contract operation. Call via acs_sc::invoke. Do the side effect

Parameters:
case_id - integer
object_id - integer
action_id - integer
entry_id - integer
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 bug_tracker::bug::capture_resolution_code::do_side_effect bug_tracker::bug::capture_resolution_code::do_side_effect (private) AcsSc.workflow_action_sideeffect.dosideeffect.captureresolutioncode AcsSc.workflow_action_sideeffect.dosideeffect.captureresolutioncode AcsSc.workflow_action_sideeffect.dosideeffect.captureresolutioncode->bug_tracker::bug::capture_resolution_code::do_side_effect

Testcases:
No testcase defined.

AcsSc.workflow_action_sideeffect.getobjecttype.captureresolutioncode (private)

 AcsSc.workflow_action_sideeffect.getobjecttype.captureresolutioncode

acs-service-contract operation. Call via acs_sc::invoke. Get the object type for which this implementation is valid.

Returns:
object_type - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 bug_tracker::bug::object_type bug_tracker::bug::object_type (public) AcsSc.workflow_action_sideeffect.getobjecttype.captureresolutioncode AcsSc.workflow_action_sideeffect.getobjecttype.captureresolutioncode AcsSc.workflow_action_sideeffect.getobjecttype.captureresolutioncode->bug_tracker::bug::object_type

Testcases:
No testcase defined.

AcsSc.workflow_action_sideeffect.getprettyname.captureresolutioncode (private)

 AcsSc.workflow_action_sideeffect.getprettyname.captureresolutioncode

acs-service-contract operation. Call via acs_sc::invoke. Get the pretty name of this implementation.

Returns:
pretty_name - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 bug_tracker::bug::capture_resolution_code::pretty_name bug_tracker::bug::capture_resolution_code::pretty_name (private) AcsSc.workflow_action_sideeffect.getprettyname.captureresolutioncode AcsSc.workflow_action_sideeffect.getprettyname.captureresolutioncode AcsSc.workflow_action_sideeffect.getprettyname.captureresolutioncode->bug_tracker::bug::capture_resolution_code::pretty_name

Testcases:
No testcase defined.

AcsSc.workflow_activitylog_formattitle.getobjecttype.formatlogtitle (private)

 AcsSc.workflow_activitylog_formattitle.getobjecttype.formatlogtitle

acs-service-contract operation. Call via acs_sc::invoke. Get the object type for which this implementation is valid.

Returns:
object_type - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 bug_tracker::bug::object_type bug_tracker::bug::object_type (public) AcsSc.workflow_activitylog_formattitle.getobjecttype.formatlogtitle AcsSc.workflow_activitylog_formattitle.getobjecttype.formatlogtitle AcsSc.workflow_activitylog_formattitle.getobjecttype.formatlogtitle->bug_tracker::bug::object_type

Testcases:
No testcase defined.

AcsSc.workflow_activitylog_formattitle.getprettyname.formatlogtitle (private)

 AcsSc.workflow_activitylog_formattitle.getprettyname.formatlogtitle

acs-service-contract operation. Call via acs_sc::invoke. Get the pretty name of this implementation. Will be localized, so it may contain #...#.

Returns:
pretty_name - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 bug_tracker::bug::format_log_title::pretty_name bug_tracker::bug::format_log_title::pretty_name (private) AcsSc.workflow_activitylog_formattitle.getprettyname.formatlogtitle AcsSc.workflow_activitylog_formattitle.getprettyname.formatlogtitle AcsSc.workflow_activitylog_formattitle.getprettyname.formatlogtitle->bug_tracker::bug::format_log_title::pretty_name

Testcases:
No testcase defined.

AcsSc.workflow_activitylog_formattitle.gettitle.formatlogtitle (private)

 AcsSc.workflow_activitylog_formattitle.gettitle.formatlogtitle case_id \
    object_id action_id entry_id data_arraylist

acs-service-contract operation. Call via acs_sc::invoke. Get the title name of this implementation.

Parameters:
case_id - integer
object_id - integer
action_id - integer
entry_id - integer
data_arraylist - string []
Returns:
title - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 bug_tracker::bug::format_log_title::format_log_title bug_tracker::bug::format_log_title::format_log_title (private) AcsSc.workflow_activitylog_formattitle.gettitle.formatlogtitle AcsSc.workflow_activitylog_formattitle.gettitle.formatlogtitle AcsSc.workflow_activitylog_formattitle.gettitle.formatlogtitle->bug_tracker::bug::format_log_title::format_log_title

Testcases:
No testcase defined.

AcsSc.workflow_notificationinfo.getnotificationinfo.bugnotificationinfo (private)

 AcsSc.workflow_notificationinfo.getnotificationinfo.bugnotificationinfo \
    case_id object_id

acs-service-contract operation. Call via acs_sc::invoke. Get the notification information as a 4-element list containing url, one-line summary, details about the object in the form of an array-list with label/value, and finally an optional tag for the notification subject, in the order mentioned here.

Parameters:
case_id - integer
object_id - integer
Returns:
info - string []
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 bug_tracker::bug::notification_info::get_notification_info bug_tracker::bug::notification_info::get_notification_info (private) AcsSc.workflow_notificationinfo.getnotificationinfo.bugnotificationinfo AcsSc.workflow_notificationinfo.getnotificationinfo.bugnotificationinfo AcsSc.workflow_notificationinfo.getnotificationinfo.bugnotificationinfo->bug_tracker::bug::notification_info::get_notification_info

Testcases:
No testcase defined.

AcsSc.workflow_notificationinfo.getobjecttype.bugnotificationinfo (private)

 AcsSc.workflow_notificationinfo.getobjecttype.bugnotificationinfo

acs-service-contract operation. Call via acs_sc::invoke. Get the object type for which this implementation is valid.

Returns:
object_type - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 bug_tracker::bug::object_type bug_tracker::bug::object_type (public) AcsSc.workflow_notificationinfo.getobjecttype.bugnotificationinfo AcsSc.workflow_notificationinfo.getobjecttype.bugnotificationinfo AcsSc.workflow_notificationinfo.getobjecttype.bugnotificationinfo->bug_tracker::bug::object_type

Testcases:
No testcase defined.

AcsSc.workflow_notificationinfo.getprettyname.bugnotificationinfo (private)

 AcsSc.workflow_notificationinfo.getprettyname.bugnotificationinfo

acs-service-contract operation. Call via acs_sc::invoke. Get the pretty name of this implementation. Will be localized, so it may contain #...#.

Returns:
pretty_name - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 bug_tracker::bug::notification_info::pretty_name bug_tracker::bug::notification_info::pretty_name (private) AcsSc.workflow_notificationinfo.getprettyname.bugnotificationinfo AcsSc.workflow_notificationinfo.getprettyname.bugnotificationinfo AcsSc.workflow_notificationinfo.getprettyname.bugnotificationinfo->bug_tracker::bug::notification_info::pretty_name

Testcases:
No testcase defined.

AcsSc.workflow_role_assigneepicklist.getobjecttype.role_picklist_currentassignees (private)

 AcsSc.workflow_role_assigneepicklist.getobjecttype.role_picklist_currentassignees

acs-service-contract operation. Call via acs_sc::invoke. Get the object type for which this implementation is valid.

Returns:
object_type - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 workflow::impl::acs_object workflow::impl::acs_object (public) AcsSc.workflow_role_assigneepicklist.getobjecttype.role_picklist_currentassignees AcsSc.workflow_role_assigneepicklist.getobjecttype.role_picklist_currentassignees AcsSc.workflow_role_assigneepicklist.getobjecttype.role_picklist_currentassignees->workflow::impl::acs_object

Testcases:
No testcase defined.

AcsSc.workflow_role_assigneepicklist.getpicklist.role_picklist_currentassignees (private)

 AcsSc.workflow_role_assigneepicklist.getpicklist.role_picklist_currentassignees \
    case_id object_id role_id

acs-service-contract operation. Call via acs_sc::invoke. Get the most likely assignees for this case, object and role, as a Tcl list of party_ids

Parameters:
case_id - integer
object_id - integer
role_id - integer
Returns:
party_ids - integer []
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 workflow::impl::role_assignee_pick_list::current_assignees::get_pick_list workflow::impl::role_assignee_pick_list::current_assignees::get_pick_list (public) AcsSc.workflow_role_assigneepicklist.getpicklist.role_picklist_currentassignees AcsSc.workflow_role_assigneepicklist.getpicklist.role_picklist_currentassignees AcsSc.workflow_role_assigneepicklist.getpicklist.role_picklist_currentassignees->workflow::impl::role_assignee_pick_list::current_assignees::get_pick_list

Testcases:
No testcase defined.

AcsSc.workflow_role_assigneepicklist.getprettyname.role_picklist_currentassignees (private)

 AcsSc.workflow_role_assigneepicklist.getprettyname.role_picklist_currentassignees

acs-service-contract operation. Call via acs_sc::invoke. Get the pretty name of this implementation.

Returns:
pretty_name - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 workflow::impl::role_assignee_pick_list::current_assignees::pretty_name workflow::impl::role_assignee_pick_list::current_assignees::pretty_name (public) AcsSc.workflow_role_assigneepicklist.getprettyname.role_picklist_currentassignees AcsSc.workflow_role_assigneepicklist.getprettyname.role_picklist_currentassignees AcsSc.workflow_role_assigneepicklist.getprettyname.role_picklist_currentassignees->workflow::impl::role_assignee_pick_list::current_assignees::pretty_name

Testcases:
No testcase defined.

AcsSc.workflow_role_assigneesubquery.getobjecttype.role_assigneesubquery_registeredusers (private)

 AcsSc.workflow_role_assigneesubquery.getobjecttype.role_assigneesubquery_registeredusers

acs-service-contract operation. Call via acs_sc::invoke. Get the object type for which this implementation is valid.

Returns:
object_type - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 workflow::impl::acs_object workflow::impl::acs_object (public) AcsSc.workflow_role_assigneesubquery.getobjecttype.role_assigneesubquery_registeredusers AcsSc.workflow_role_assigneesubquery.getobjecttype.role_assigneesubquery_registeredusers AcsSc.workflow_role_assigneesubquery.getobjecttype.role_assigneesubquery_registeredusers->workflow::impl::acs_object

Testcases:
No testcase defined.

AcsSc.workflow_role_assigneesubquery.getprettyname.role_assigneesubquery_registeredusers (private)

 AcsSc.workflow_role_assigneesubquery.getprettyname.role_assigneesubquery_registeredusers

acs-service-contract operation. Call via acs_sc::invoke. Get the pretty name of this implementation.

Returns:
pretty_name - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 workflow::impl::role_assignee_subquery::registered_users::pretty_name workflow::impl::role_assignee_subquery::registered_users::pretty_name (public) AcsSc.workflow_role_assigneesubquery.getprettyname.role_assigneesubquery_registeredusers AcsSc.workflow_role_assigneesubquery.getprettyname.role_assigneesubquery_registeredusers AcsSc.workflow_role_assigneesubquery.getprettyname.role_assigneesubquery_registeredusers->workflow::impl::role_assignee_subquery::registered_users::pretty_name

Testcases:
No testcase defined.

AcsSc.workflow_role_assigneesubquery.getsubquery.role_assigneesubquery_registeredusers (private)

 AcsSc.workflow_role_assigneesubquery.getsubquery.role_assigneesubquery_registeredusers \
    case_id object_id role_id

acs-service-contract operation. Call via acs_sc::invoke. Get a subquery which will return the list of parties who can be assigned to the role, e.g. simply the name of a view of users/parties, or a subquery enclosed in parenthesis such as '(select * from parties where ...)'

Parameters:
case_id - integer
object_id - integer
role_id - integer
Returns:
subquery - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 workflow::impl::role_assignee_subquery::registered_users::get_subquery workflow::impl::role_assignee_subquery::registered_users::get_subquery (public) AcsSc.workflow_role_assigneesubquery.getsubquery.role_assigneesubquery_registeredusers AcsSc.workflow_role_assigneesubquery.getsubquery.role_assigneesubquery_registeredusers AcsSc.workflow_role_assigneesubquery.getsubquery.role_assigneesubquery_registeredusers->workflow::impl::role_assignee_subquery::registered_users::get_subquery

Testcases:
No testcase defined.

AcsSc.workflow_role_defaultassignees.getassignees.componentmaintainer (private)

 AcsSc.workflow_role_defaultassignees.getassignees.componentmaintainer \
    case_id object_id role_id

acs-service-contract operation. Call via acs_sc::invoke. Get the assignees as a Tcl list of party_ids, of the default assignees for this case, object, role

Parameters:
case_id - integer
object_id - integer
role_id - integer
Returns:
party_ids - integer []
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 bug_tracker::bug::get_component_maintainer::get_assignees bug_tracker::bug::get_component_maintainer::get_assignees (private) AcsSc.workflow_role_defaultassignees.getassignees.componentmaintainer AcsSc.workflow_role_defaultassignees.getassignees.componentmaintainer AcsSc.workflow_role_defaultassignees.getassignees.componentmaintainer->bug_tracker::bug::get_component_maintainer::get_assignees

Testcases:
No testcase defined.

AcsSc.workflow_role_defaultassignees.getassignees.projectmaintainer (private)

 AcsSc.workflow_role_defaultassignees.getassignees.projectmaintainer \
    case_id object_id role_id

acs-service-contract operation. Call via acs_sc::invoke. Get the assignees as a Tcl list of party_ids, of the default assignees for this case, object, role

Parameters:
case_id - integer
object_id - integer
role_id - integer
Returns:
party_ids - integer []
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 bug_tracker::bug::get_project_maintainer::get_assignees bug_tracker::bug::get_project_maintainer::get_assignees (private) AcsSc.workflow_role_defaultassignees.getassignees.projectmaintainer AcsSc.workflow_role_defaultassignees.getassignees.projectmaintainer AcsSc.workflow_role_defaultassignees.getassignees.projectmaintainer->bug_tracker::bug::get_project_maintainer::get_assignees

Testcases:
No testcase defined.

AcsSc.workflow_role_defaultassignees.getassignees.role_defaultassignees_creationuser (private)

 AcsSc.workflow_role_defaultassignees.getassignees.role_defaultassignees_creationuser \
    case_id object_id role_id

acs-service-contract operation. Call via acs_sc::invoke. Get the assignees as a Tcl list of party_ids, of the default assignees for this case, object, role

Parameters:
case_id - integer
object_id - integer
role_id - integer
Returns:
party_ids - integer []
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 workflow::impl::role_default_assignees::creation_user::get_assignees workflow::impl::role_default_assignees::creation_user::get_assignees (public) AcsSc.workflow_role_defaultassignees.getassignees.role_defaultassignees_creationuser AcsSc.workflow_role_defaultassignees.getassignees.role_defaultassignees_creationuser AcsSc.workflow_role_defaultassignees.getassignees.role_defaultassignees_creationuser->workflow::impl::role_default_assignees::creation_user::get_assignees

Testcases:
No testcase defined.

AcsSc.workflow_role_defaultassignees.getassignees.role_defaultassignees_staticassignees (private)

 AcsSc.workflow_role_defaultassignees.getassignees.role_defaultassignees_staticassignees \
    case_id object_id role_id

acs-service-contract operation. Call via acs_sc::invoke. Get the assignees as a Tcl list of party_ids, of the default assignees for this case, object, role

Parameters:
case_id - integer
object_id - integer
role_id - integer
Returns:
party_ids - integer []
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 workflow::impl::role_default_assignees::static_assignees::get_assignees workflow::impl::role_default_assignees::static_assignees::get_assignees (public) AcsSc.workflow_role_defaultassignees.getassignees.role_defaultassignees_staticassignees AcsSc.workflow_role_defaultassignees.getassignees.role_defaultassignees_staticassignees AcsSc.workflow_role_defaultassignees.getassignees.role_defaultassignees_staticassignees->workflow::impl::role_default_assignees::static_assignees::get_assignees

Testcases:
No testcase defined.

AcsSc.workflow_role_defaultassignees.getobjecttype.componentmaintainer (private)

 AcsSc.workflow_role_defaultassignees.getobjecttype.componentmaintainer

acs-service-contract operation. Call via acs_sc::invoke. Get the object type for which this implementation is valid.

Returns:
object_type - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 bug_tracker::bug::object_type bug_tracker::bug::object_type (public) AcsSc.workflow_role_defaultassignees.getobjecttype.componentmaintainer AcsSc.workflow_role_defaultassignees.getobjecttype.componentmaintainer AcsSc.workflow_role_defaultassignees.getobjecttype.componentmaintainer->bug_tracker::bug::object_type

Testcases:
No testcase defined.

AcsSc.workflow_role_defaultassignees.getobjecttype.projectmaintainer (private)

 AcsSc.workflow_role_defaultassignees.getobjecttype.projectmaintainer

acs-service-contract operation. Call via acs_sc::invoke. Get the object type for which this implementation is valid.

Returns:
object_type - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 bug_tracker::bug::object_type bug_tracker::bug::object_type (public) AcsSc.workflow_role_defaultassignees.getobjecttype.projectmaintainer AcsSc.workflow_role_defaultassignees.getobjecttype.projectmaintainer AcsSc.workflow_role_defaultassignees.getobjecttype.projectmaintainer->bug_tracker::bug::object_type

Testcases:
No testcase defined.

AcsSc.workflow_role_defaultassignees.getobjecttype.role_defaultassignees_creationuser (private)

 AcsSc.workflow_role_defaultassignees.getobjecttype.role_defaultassignees_creationuser

acs-service-contract operation. Call via acs_sc::invoke. Get the object type for which this implementation is valid.

Returns:
object_type - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 workflow::impl::acs_object workflow::impl::acs_object (public) AcsSc.workflow_role_defaultassignees.getobjecttype.role_defaultassignees_creationuser AcsSc.workflow_role_defaultassignees.getobjecttype.role_defaultassignees_creationuser AcsSc.workflow_role_defaultassignees.getobjecttype.role_defaultassignees_creationuser->workflow::impl::acs_object

Testcases:
No testcase defined.

AcsSc.workflow_role_defaultassignees.getobjecttype.role_defaultassignees_staticassignees (private)

 AcsSc.workflow_role_defaultassignees.getobjecttype.role_defaultassignees_staticassignees

acs-service-contract operation. Call via acs_sc::invoke. Get the object type for which this implementation is valid.

Returns:
object_type - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 workflow::impl::acs_object workflow::impl::acs_object (public) AcsSc.workflow_role_defaultassignees.getobjecttype.role_defaultassignees_staticassignees AcsSc.workflow_role_defaultassignees.getobjecttype.role_defaultassignees_staticassignees AcsSc.workflow_role_defaultassignees.getobjecttype.role_defaultassignees_staticassignees->workflow::impl::acs_object

Testcases:
No testcase defined.

AcsSc.workflow_role_defaultassignees.getprettyname.componentmaintainer (private)

 AcsSc.workflow_role_defaultassignees.getprettyname.componentmaintainer

acs-service-contract operation. Call via acs_sc::invoke. Get the pretty name of this implementation.

Returns:
pretty_name - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 bug_tracker::bug::get_component_maintainer::pretty_name bug_tracker::bug::get_component_maintainer::pretty_name (private) AcsSc.workflow_role_defaultassignees.getprettyname.componentmaintainer AcsSc.workflow_role_defaultassignees.getprettyname.componentmaintainer AcsSc.workflow_role_defaultassignees.getprettyname.componentmaintainer->bug_tracker::bug::get_component_maintainer::pretty_name

Testcases:
No testcase defined.

AcsSc.workflow_role_defaultassignees.getprettyname.projectmaintainer (private)

 AcsSc.workflow_role_defaultassignees.getprettyname.projectmaintainer

acs-service-contract operation. Call via acs_sc::invoke. Get the pretty name of this implementation.

Returns:
pretty_name - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 bug_tracker::bug::get_project_maintainer::pretty_name bug_tracker::bug::get_project_maintainer::pretty_name (private) AcsSc.workflow_role_defaultassignees.getprettyname.projectmaintainer AcsSc.workflow_role_defaultassignees.getprettyname.projectmaintainer AcsSc.workflow_role_defaultassignees.getprettyname.projectmaintainer->bug_tracker::bug::get_project_maintainer::pretty_name

Testcases:
No testcase defined.

AcsSc.workflow_role_defaultassignees.getprettyname.role_defaultassignees_creationuser (private)

 AcsSc.workflow_role_defaultassignees.getprettyname.role_defaultassignees_creationuser

acs-service-contract operation. Call via acs_sc::invoke. Get the pretty name of this implementation.

Returns:
pretty_name - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 workflow::impl::role_default_assignees::creation_user::pretty_name workflow::impl::role_default_assignees::creation_user::pretty_name (public) AcsSc.workflow_role_defaultassignees.getprettyname.role_defaultassignees_creationuser AcsSc.workflow_role_defaultassignees.getprettyname.role_defaultassignees_creationuser AcsSc.workflow_role_defaultassignees.getprettyname.role_defaultassignees_creationuser->workflow::impl::role_default_assignees::creation_user::pretty_name

Testcases:
No testcase defined.

AcsSc.workflow_role_defaultassignees.getprettyname.role_defaultassignees_staticassignees (private)

 AcsSc.workflow_role_defaultassignees.getprettyname.role_defaultassignees_staticassignees

acs-service-contract operation. Call via acs_sc::invoke. Get the pretty name of this implementation.

Returns:
pretty_name - string
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 workflow::impl::role_default_assignees::static_assignees::pretty_name workflow::impl::role_default_assignees::static_assignees::pretty_name (public) AcsSc.workflow_role_defaultassignees.getprettyname.role_defaultassignees_staticassignees AcsSc.workflow_role_defaultassignees.getprettyname.role_defaultassignees_staticassignees AcsSc.workflow_role_defaultassignees.getprettyname.role_defaultassignees_staticassignees->workflow::impl::role_default_assignees::static_assignees::pretty_name

Testcases:
No testcase defined.
[ show source ]