Liking cljdoc? Tell your friends :D

javax.security.auth.SubjectDomainCombiner

A SubjectDomainCombiner updates ProtectionDomains with Principals from the Subject associated with this SubjectDomainCombiner.

A SubjectDomainCombiner updates ProtectionDomains
with Principals from the Subject associated with this
SubjectDomainCombiner.
raw docstring

->subject-domain-combinerclj

(->subject-domain-combiner subject)

Constructor.

Associate the provided Subject with this SubjectDomainCombiner.

subject - the Subject to be associated with with this SubjectDomainCombiner. - javax.security.auth.Subject

Constructor.

Associate the provided Subject with this
 SubjectDomainCombiner.

subject - the Subject to be associated with with this SubjectDomainCombiner. - `javax.security.auth.Subject`
raw docstring

combineclj

(combine this current-domains assigned-domains)

Update the relevant ProtectionDomains with the Principals from the Subject associated with this SubjectDomainCombiner.

A new ProtectionDomain instance is created for each ProtectionDomain in the currentDomains array. Each new ProtectionDomain instance is created using the CodeSource, Permissions and ClassLoader from the corresponding ProtectionDomain in currentDomains, as well as with the Principals from the Subject associated with this SubjectDomainCombiner.

All of the newly instantiated ProtectionDomains are combined into a new array. The ProtectionDomains from the assignedDomains array are appended to this new array, and the result is returned.

Note that optimizations such as the removal of duplicate ProtectionDomains may have occurred. In addition, caching of ProtectionDomains may be permitted.

current-domains - the ProtectionDomains associated with the current execution Thread, up to the most recent privileged ProtectionDomain. The ProtectionDomains are are listed in order of execution, with the most recently executing ProtectionDomain residing at the beginning of the array. This parameter may be null if the current execution Thread has no associated ProtectionDomains. - java.security.ProtectionDomain[] assigned-domains - the ProtectionDomains inherited from the parent Thread, or the ProtectionDomains from the privileged context, if a call to AccessController.doPrivileged(..., context) had occurred This parameter may be null if there were no ProtectionDomains inherited from the parent Thread, or from the privileged context. - java.security.ProtectionDomain[]

returns: a new array consisting of the updated ProtectionDomains, or null. - java.security.ProtectionDomain[]

Update the relevant ProtectionDomains with the Principals
 from the Subject associated with this
 SubjectDomainCombiner.

  A new ProtectionDomain instance is created
 for each ProtectionDomain in the
 currentDomains array.  Each new ProtectionDomain
 instance is created using the CodeSource,
 Permissions and ClassLoader
 from the corresponding ProtectionDomain in
 currentDomains, as well as with the Principals from
 the Subject associated with this
 SubjectDomainCombiner.

  All of the newly instantiated ProtectionDomains are
 combined into a new array.  The ProtectionDomains from the
 assignedDomains array are appended to this new array,
 and the result is returned.

  Note that optimizations such as the removal of duplicate
 ProtectionDomains may have occurred.
 In addition, caching of ProtectionDomains may be permitted.

current-domains - the ProtectionDomains associated with the current execution Thread, up to the most recent privileged ProtectionDomain. The ProtectionDomains are are listed in order of execution, with the most recently executing ProtectionDomain residing at the beginning of the array. This parameter may be null if the current execution Thread has no associated ProtectionDomains. - `java.security.ProtectionDomain[]`
assigned-domains - the ProtectionDomains inherited from the parent Thread, or the ProtectionDomains from the privileged context, if a call to AccessController.doPrivileged(..., context) had occurred This parameter may be null if there were no ProtectionDomains inherited from the parent Thread, or from the privileged context. - `java.security.ProtectionDomain[]`

returns: a new array consisting of the updated ProtectionDomains,
          or null. - `java.security.ProtectionDomain[]`
raw docstring

get-subjectclj

(get-subject this)

Get the Subject associated with this SubjectDomainCombiner.

returns: the Subject associated with this SubjectDomainCombiner, or null if no Subject is associated with this SubjectDomainCombiner. - javax.security.auth.Subject

throws: java.lang.SecurityException - if the caller does not have permission to get the Subject associated with this SubjectDomainCombiner.

Get the Subject associated with this
 SubjectDomainCombiner.

returns: the Subject associated with this
          SubjectDomainCombiner, or null
          if no Subject is associated with this
          SubjectDomainCombiner. - `javax.security.auth.Subject`

throws: java.lang.SecurityException - if the caller does not have permission to get the Subject associated with this SubjectDomainCombiner.
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close