Release 2.x‎ > ‎Install - Reference‎ > ‎Config Ref Guide‎ > ‎Security‎ > ‎Policies‎ > ‎Policy‎ > ‎Targets‎ > ‎

Target

A Target declares "what" resource is being protected by the Policy.  The collection of Operation elements declare what OpenPTK operation should be allowed for the specific resource.  Valid Operation "id" values:
  • CREATE
  • READ
  • UPDATE
  • DELETE
  • SEARCH
  • PWDRESET
  • PWDCHANGE
  • PWDFORGOT

Syntax


<Target id="..." type="..." value="...">
   <Operations>
      <Operation id="..."/>
      ...
   </Operations>
</Target>

Arguments


 Name Required Description Example
 id yes A unique identifier for the Target id="clients"
 type yes The type of Target.  The current allowed types:
  • uri
 type="uri"
 value yes The resource pattern that is being protected.

uri:
  • The period character can be used in the middle of a name (between slashes) as a wild-card place holder for a single level in the namespace.
  • The asterisk character can be used (only) at the end of a name (after the last slash) as a wild-card for ANY pattern after it in the namespace.
 value="/resources/clients/*"

Properties

None


XML Sub-Elements