.. js:function:: core.add_acl(name, key)
+ **LEGACY**
+
**context**: init, task, action, sample-fetch, converter
Add the ACL *key* in the ACLs list referenced by *name*.
:param string name: the name that reference the ACL entries.
:param string key: the key which will be added.
+ .. Note::
+ This function is not optimal due to systematic Map reference lookup.
+ It is recommended to use :js:func:`Patref.add()` instead.
+
.. js:function:: core.del_acl(name, key)
+ **LEGACY**
+
**context**: init, task, action, sample-fetch, converter
Delete the ACL entry referenced by the key *key* in the list of ACLs
:param string name: the name that reference the ACL entries.
:param string key: the key which will be deleted.
+ .. Note::
+ This function is not optimal due to systematic Map reference lookup.
+ It is recommended to use :js:func:`Patref.del()` instead.
+
.. js:function:: core.del_map(name, key)
+ **LEGACY**
+
**context**: init, task, action, sample-fetch, converter
Delete the map entry indexed with the specified key in the list of maps
:param string name: the name that reference the map entries.
:param string key: the key which will be deleted.
+ .. Note::
+ This function is not optimal due to systematic Map reference lookup.
+ It is recommended to use :js:func:`Patref.del()` instead.
+
.. js:function:: core.get_info()
**context**: body, init, task, action, sample-fetch, converter
.. js:function:: core.set_map(name, key, value)
+ **LEGACY**
+
**context**: init, task, action, sample-fetch, converter
Set the value *value* associated to the key *key* in the map referenced by
:param string key: the key to set or replace
:param string value: the associated value
+ .. Note::
+ This function is not optimal due to systematic Map reference lookup.
+ It is recommended to use :js:func:`Patref.set()` instead.
+
.. js:function:: core.sleep(int seconds)
**context**: task, action