A decision center is identified by a unique number in a
subsystem. That number must be specified in the associated label of the
decision center. The name of the decision center is optional and is not
taken into account. If parameters should be transmitted to the decision
center, they must be coded as key=value pairs, separated with white spaces
and encoded as specified in the URL encoding specification.
A label must begin with !-!/objexion/, followed
by the unique number of the decision center, optionally followed by a
space and the name of the decision center (with no spaces), optionally
followed by a sequence of pairs key=value separated by white spaces and
ended with /.
Here is a corresponding regular expression expressed in
Perl :
!-!\/objexion\/(\d*)(\s+([^\s=\/]+))?((\s+\w+=[^\s\/]*)*)\s*(\/)
Examples:
For a decision center named "entry
Discrimination" with number 10
!-!/objexion/10/
!-!/objexion/10 entryDiscrimination/
With parameter "newtopic" with value
"03b2197a5f99128b0c0324b288f3d899"
!-!/objexion/10
newtopic=03b2197a5f99128b0c0324b288f3d899/
!-!/objexion/10 entryDiscrimination
newtopic=03b2197a5f99128b0c0324b288f3d899/
With parameter "color" with value "light
gray"
!-!/objexion/10
newtopic=03b2197a5f99128b0c0324b288f3d899 color=light%20gray/