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 (required)
integer
Returns:
page_url - string
See Also:

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 (required)
integer
Returns:
page_url - string
See Also:

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 (required)
string
password (required)
string
parameters (required)
string []
authority_id (required)
integer
Returns:
auth_status - string
auth_message - string
account_status - string
account_message - string
See Also:

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:

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 (required)
integer
to_user_id (required)
integer
authority_id (required)
integer
See Also:

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 (required)
string []
Returns:
changeable_p - boolean
See Also:

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 (required)
string []
Returns:
resettable_p - boolean
See Also:

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 (required)
string []
Returns:
retrievable_p - boolean
See Also:

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 (required)
string
old_password (required)
string
new_password (required)
string
parameters (required)
string []
authority_id (required)
integer
Returns:
password_status - string
password_message - string
See Also:

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:

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 (required)
string
parameters (required)
string []
authority_id (required)
integer
Returns:
password_status - string
password_message - string
password - string
See Also:

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 (required)
string
parameters (required)
string []
Returns:
password_status - string
password_message - string
password - string
See Also:

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 (required)
string []
Returns:
requiered - string []
optional - string []
See Also:

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 (required)
string []
Returns:
requiered - string []
optional - string []
See Also:

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:

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:

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 (required)
string []
username (required)
string
authority_id (required)
integer
first_names (required)
string
last_name (required)
string
screen_name (required)
string
email (required)
string
url (required)
string
password (required)
string
secret_question (required)
string
secret_answer (required)
string
Returns:
creation_status - string
creation_message - string
element_messages - string []
account_status - string
account_message - string
See Also:

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 (required)
string []
username (required)
string
authority_id (required)
integer
first_names (required)
string
last_name (required)
string
screen_name (required)
string
email (required)
string
url (required)
string
password (required)
string
secret_question (required)
string
secret_answer (required)
string
Returns:
creation_status - string
creation_message - string
element_messages - string []
account_status - string
account_message - string
See Also:

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 (required)
integer
document (required)
string
parameters (required)
string []
See Also:

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 (required)
string []
Returns:
elements - string []
See Also:

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:

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 (required)
integer
document (required)
string
parameters (required)
string []
See Also:

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 (required)
string []
Returns:
doc_status - string
doc_message - string
document - string
snapshot_p - string
See Also:

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 (required)
string []
Returns:
doc_status - string
doc_message - string
document - string
snapshot_p - string
See Also:

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:

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:

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:

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:

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:

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:

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:

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:

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:

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:

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:

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:

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:

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:

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:

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:

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:

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:

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:

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:

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:

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:

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:

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:

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:

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:

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:

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:

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:

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:

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:

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:

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:

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:

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:

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:

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:

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 (required)
integer
Returns:
object_id - integer
title - string
content - string
mime - string
storage_type - string
See Also:

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 (required)
integer
Returns:
object_id - integer
title - string
content - string
mime - string
storage_type - string
See Also:

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 (required)
integer
Returns:
object_id - integer
title - string
content - string
mime - string
storage_type - string
See Also:

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 (required)
integer
Returns:
object_id - integer
title - string
content - string
mime - string
storage_type - string
See Also:

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 (required)
integer
Returns:
object_id - integer
title - string
content - string
mime - string
storage_type - string
See Also:

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 (required)
integer
Returns:
object_id - integer
title - string
content - string
mime - string
storage_type - string
See Also:

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 (required)
integer
Returns:
object_id - integer
title - string
content - string
mime - string
storage_type - string
See Also:

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 (required)
integer
Returns:
object_id - integer
title - string
content - string
mime - string
storage_type - string
See Also:

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 (required)
integer
Returns:
object_id - integer
title - string
content - string
mime - string
storage_type - string
See Also:

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 (required)
integer
Returns:
object_id - integer
title - string
content - string
mime - string
storage_type - string
See Also:

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 (required)
integer
Returns:
object_id - integer
title - string
content - string
mime - string
storage_type - string
See Also:

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 (required)
integer
Returns:
object_id - integer
title - string
content - string
mime - string
storage_type - string
See Also:

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 (required)
integer
Returns:
object_id - integer
title - string
content - string
mime - string
storage_type - string
See Also:

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 (required)
integer
Returns:
object_id - integer
title - string
content - string
mime - string
storage_type - string
See Also:

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 (required)
integer
Returns:
object_id - integer
title - string
content - string
mime - string
storage_type - string
See Also:

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 (required)
integer
Returns:
url - uri
See Also:

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 (required)
integer
Returns:
url - uri
See Also:

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 (required)
integer
Returns:
url - uri
See Also:

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 (required)
integer
Returns:
url - uri
See Also:

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 (required)
integer
Returns:
url - uri
See Also:

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 (required)
integer
Returns:
url - uri
See Also:

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 (required)
integer
Returns:
url - uri
See Also:

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 (required)
integer
Returns:
url - uri
See Also:

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 (required)
integer
Returns:
url - uri
See Also:

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 (required)
integer
Returns:
url - uri
See Also:

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 (required)
integer
Returns:
url - uri
See Also:

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 (required)
integer
Returns:
url - uri
See Also:

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 (required)
integer
Returns:
url - uri
See Also:

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 (required)
integer
Returns:
url - uri
See Also:

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 (required)
integer
Returns:
url - uri
See Also:

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 (required)
integer
txt (required)
string
title (required)
string
keywords (required)
string
See Also:

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:

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 (required)
string
offset (required)
integer
limit (required)
integer
user_id (required)
integer
df (required)
timestamp
dt (required)
timestamp
Returns:
ids - integer []
stopwords - string []
See Also:

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 (required)
string
txt (required)
string
Returns:
summary - string
See Also:

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 (required)
integer
See Also:

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 (required)
integer
txt (required)
string
title (required)
string
keywords (required)
string
See Also:

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:

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 (required)
integer
to_user_id (required)
integer
reply_object_id (required)
integer
notification_type_id (required)
integer
subject (required)
string
content_text (required)
string
content_html (required)
string
file_ids (required)
string
See Also:

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 (required)
integer
Returns:
url - string
See Also:

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 (required)
integer
Returns:
url - string
See Also:

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 (required)
integer
Returns:
url - string
See Also:

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 (required)
integer
Returns:
url - string
See Also:

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 (required)
integer
Returns:
url - string
See Also:

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 (required)
integer
Returns:
url - string
See Also:

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 (required)
integer
Returns:
url - string
See Also:

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 (required)
integer
Returns:
url - string
See Also:

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 (required)
integer
Returns:
url - string
See Also:

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 (required)
integer
Returns:
url - string
See Also:

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 (required)
integer
Returns:
url - string
See Also:

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 (required)
integer
Returns:
url - string
See Also:

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 (required)
integer
Returns:
success_p - boolean
See Also:

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 (required)
integer
Returns:
success_p - boolean
See Also:

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 (required)
integer
Returns:
success_p - boolean
See Also:

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 (required)
integer
Returns:
success_p - boolean
See Also:

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 (required)
integer
Returns:
success_p - boolean
See Also:

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 (required)
integer
Returns:
success_p - boolean
See Also:

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 (required)
integer
Returns:
success_p - boolean
See Also:

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 (required)
integer
Returns:
success_p - boolean
See Also:

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 (required)
integer
Returns:
success_p - boolean
See Also:

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 (required)
integer
Returns:
success_p - boolean
See Also:

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 (required)
integer
Returns:
success_p - boolean
See Also:

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 (required)
integer
Returns:
success_p - boolean
See Also:

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 (required)
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:

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 (required)
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:

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 (required)
string
Returns:
lastupdate - timestamp
See Also:

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 (required)
string
Returns:
lastupdate - timestamp
See Also:

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 (required)
integer
object_id (required)
integer
action_id (required)
integer
entry_id (required)
integer
See Also:

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:

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:

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:

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:

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 (required)
integer
object_id (required)
integer
action_id (required)
integer
entry_id (required)
integer
data_arraylist (required)
string []
Returns:
title - string
See Also:

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 (required)
integer
object_id (required)
integer
Returns:
info - string []
See Also:

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:

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:

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:

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 (required)
integer
object_id (required)
integer
role_id (required)
integer
Returns:
party_ids - integer []
See Also:

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:

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:

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:

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 (required)
integer
object_id (required)
integer
role_id (required)
integer
Returns:
subquery - string
See Also:

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 (required)
integer
object_id (required)
integer
role_id (required)
integer
Returns:
party_ids - integer []
See Also:

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 (required)
integer
object_id (required)
integer
role_id (required)
integer
Returns:
party_ids - integer []
See Also:

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 (required)
integer
object_id (required)
integer
role_id (required)
integer
Returns:
party_ids - integer []
See Also:

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 (required)
integer
object_id (required)
integer
role_id (required)
integer
Returns:
party_ids - integer []
See Also:

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:

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:

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:

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:

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:

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:

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:

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:

Testcases:
No testcase defined.
[ show source ]