Features
Features are configurable from the Memority Administration portal using an XML editor to define:
Scope (which objects may be managed)
Form layout
Options
Authentication level needed to access the feature
Form layout

Feature Screen structure
Scope (which objects may be managed)
<scope type="EXPRESSION" objectKind="IDENTITY">
<searchExpression>
<search:Prop op="NOT_EQUALS" name="id">
<value script="true">SUBJECT.id</value>
</search:Prop>
</searchExpression>
<objectTypes>
<objectType>internal</objectType>
</objectTypes>
</scope>
This scope means that this functionality will be used for identities whose type is internal and whose identifier is not the one of the connected user (this can be useful when for example we want to prevent a manager to be able to act on his own identity).
Options (redirection url, attribute rules (immediate execution, initialization,…)
<options>
<completionRedirectURL>home</completionRedirectURL>
<formLabelOnTop>false</formLabelOnTop>
<immediateExecution>
<displayChanges>false</displayChanges>
<attributePatches>
<patch>
<id>enabledUntil</id>
<values />
<multiValuedState>MONO</multiValuedState>
<origin>EXTERNAL</origin>
<operation>DELETE</operation>
</patch>
</attributePatches>
</immediateExecution>
<initialization>
<attributes>
<entry>
<key>enabledFrom</key>
<entry>
<attributes>
</initialization>
<pendingOperationBehaviour>WARN</pendingOperationBehaviour>
<submit>
<reportDisplay>HIDE_ALL</reportDisplay>
</submit>
</options>
Those options means that for this functionality:
Initialization: The value of the attribute enabledFrom will be cleared in form
Immediate execution: The value of the attribute enabledUntil will be deleted at submission
Pending operation Behavior: If there is pending operation for attribute of the identity (ongoing workflow that will modify the value of the attribute) there will be a warn sign next to the attribute in form
Report Display: When clicking on the submit button, the confirmation pop ups will be hidden
Completion redirect URL: The user will be redirected on the home page after submission
To go Further
- Features
Design screens and business features to manage objects.