Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id DB251200CC2 for ; Tue, 20 Jun 2017 18:33:20 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id D9EF1160BEF; Tue, 20 Jun 2017 16:33:20 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 6CEFB160BFB for ; Tue, 20 Jun 2017 18:33:18 +0200 (CEST) Received: (qmail 13593 invoked by uid 500); 20 Jun 2017 16:33:17 -0000 Mailing-List: contact commits-help@jspwiki.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@jspwiki.apache.org Delivered-To: mailing list commits@jspwiki.apache.org Received: (qmail 13550 invoked by uid 99); 20 Jun 2017 16:33:17 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Jun 2017 16:33:17 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id CF1B1E109B; Tue, 20 Jun 2017 16:33:16 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: git-site-role@apache.org To: commits@jspwiki.apache.org Date: Tue, 20 Jun 2017 16:33:26 -0000 Message-Id: In-Reply-To: <20d0fb12c09d4643bab3833c66a8d966@git.apache.org> References: <20d0fb12c09d4643bab3833c66a8d966@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [11/51] [partial] jspwiki-site git commit: Automatic Site Publish by Buildbot archived-at: Tue, 20 Jun 2017 16:33:21 -0000 http://git-wip-us.apache.org/repos/asf/jspwiki-site/blob/2e9374f1/apidocs/2.10.1/org/apache/wiki/auth/acl/UnresolvedPrincipal.html ---------------------------------------------------------------------- diff --git a/apidocs/2.10.1/org/apache/wiki/auth/acl/UnresolvedPrincipal.html b/apidocs/2.10.1/org/apache/wiki/auth/acl/UnresolvedPrincipal.html deleted file mode 100755 index 0bb5702..0000000 --- a/apidocs/2.10.1/org/apache/wiki/auth/acl/UnresolvedPrincipal.html +++ /dev/null @@ -1,364 +0,0 @@ - - - - - - - -UnresolvedPrincipal (Apache JSPWiki Main War 2.10.1 API) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -org.apache.wiki.auth.acl -
-Class UnresolvedPrincipal

-
-java.lang.Object
-  extended by org.apache.wiki.auth.acl.UnresolvedPrincipal
-
-
-
All Implemented Interfaces:
Serializable, Principal
-
-
-
-
public final class UnresolvedPrincipal
extends Object
implements Principal, Serializable
- - - - - - -
- -

-Represents a Principal, typically read from an ACL, that cannot - be resolved based on the current state of the user database, group - manager, and built-in role definitions. - Creating a principal marked "unresolved" allows - delayed resolution, which enables principals to be resolved - lazily during a later access control check. Conceptuallly, - UnresolvedPrincipal performs a function similar to - UnresolvedPermission. -

- -

-

-
Since:
-
2.3
-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - -
-Constructor Summary
UnresolvedPrincipal(String name) - -
-          Constructs a new UnresolvedPrincipal instance.
-  - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- booleanequals(Object obj) - -
-          An unresolved principal is equal to another - unresolved principal if their names match.
- StringgetName() - -
-          Returns the name of the principal.
- inthashCode() - -
-          The hashCode of this object is equal to the hash code of its name.
- StringtoString() - -
-          Returns a String representation of the UnresolvedPrincipal.
- - - - - - - -
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Constructor Detail
- -

-UnresolvedPrincipal

-
-public UnresolvedPrincipal(String name)
-
-
Constructs a new UnresolvedPrincipal instance. -

-

-
Parameters:
name - the name of the Principal
-
- - - - - - - - -
-Method Detail
- -

-getName

-
-public String getName()
-
-
Returns the name of the principal. -

-

-
Specified by:
getName in interface Principal
-
-
- -
Returns:
the name
See Also:
Principal.getName()
-
-
-
- -

-toString

-
-public String toString()
-
-
Returns a String representation of the UnresolvedPrincipal. -

-

-
Specified by:
toString in interface Principal
Overrides:
toString in class Object
-
-
- -
Returns:
the String
-
-
-
- -

-equals

-
-public boolean equals(Object obj)
-
-
An unresolved principal is equal to another - unresolved principal if their names match. -

-

-
Specified by:
equals in interface Principal
Overrides:
equals in class Object
-
-
-
Parameters:
obj - the object to compare to this one -
Returns:
the result of the equality test
See Also:
Object.equals(java.lang.Object)
-
-
-
- -

-hashCode

-
-public int hashCode()
-
-
The hashCode of this object is equal to the hash code of its name. -

-

-
Specified by:
hashCode in interface Principal
Overrides:
hashCode in class Object
-
-
- -
Returns:
the hash code
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
-Copyright © {inceptionYear}-2014 The Apache Software Foundation. All rights reserved. - - http://git-wip-us.apache.org/repos/asf/jspwiki-site/blob/2e9374f1/apidocs/2.10.1/org/apache/wiki/auth/acl/UnresolvedPrincipal.png ---------------------------------------------------------------------- diff --git a/apidocs/2.10.1/org/apache/wiki/auth/acl/UnresolvedPrincipal.png b/apidocs/2.10.1/org/apache/wiki/auth/acl/UnresolvedPrincipal.png deleted file mode 100755 index 24216a3..0000000 Binary files a/apidocs/2.10.1/org/apache/wiki/auth/acl/UnresolvedPrincipal.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/jspwiki-site/blob/2e9374f1/apidocs/2.10.1/org/apache/wiki/auth/acl/class-use/Acl.html ---------------------------------------------------------------------- diff --git a/apidocs/2.10.1/org/apache/wiki/auth/acl/class-use/Acl.html b/apidocs/2.10.1/org/apache/wiki/auth/acl/class-use/Acl.html deleted file mode 100755 index 21d7789..0000000 --- a/apidocs/2.10.1/org/apache/wiki/auth/acl/class-use/Acl.html +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - -Uses of Interface org.apache.wiki.auth.acl.Acl (Apache JSPWiki Main War 2.10.1 API) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Interface
org.apache.wiki.auth.acl.Acl

-
- - - - - - - - - - - - - -
-Packages that use Acl
org.apache.wikiThe chief package of JSPWiki. 
org.apache.wiki.auth.aclAccess Control List implementation. 
-  -

- - - - - -
-Uses of Acl in org.apache.wiki
-  -

- - - - - - - - - -
Methods in org.apache.wiki that return Acl
- AclWikiPage.getAcl() - -
-          Returns the Acl for this page.
-  -

- - - - - - - - - -
Methods in org.apache.wiki with parameters of type Acl
- voidWikiPage.setAcl(Acl acl) - -
-          Sets the Acl for this page.
-  -

- - - - - -
-Uses of Acl in org.apache.wiki.auth.acl
-  -

- - - - - - - - - -
Classes in org.apache.wiki.auth.acl that implement Acl
- classAclImpl - -
-          JSPWiki implementation of an Access Control List.
-  -

- - - - - - - - - - - - - - - - - - - - - -
Methods in org.apache.wiki.auth.acl that return Acl
- AclDefaultAclManager.getPermissions(WikiPage page) - -
-          Returns the access control list for the page.
- AclAclManager.getPermissions(WikiPage page) - -
-          Returns the access control list for the page.
- AclDefaultAclManager.parseAcl(WikiPage page, - String ruleLine) - -
-          A helper method for parsing textual AccessControlLists.
- AclAclManager.parseAcl(WikiPage page, - String ruleLine) - -
-          A helper method for parsing textual AccessControlLists.
-  -

- - - - - - - - - - - - - - - - - -
Methods in org.apache.wiki.auth.acl with parameters of type Acl
-protected static StringDefaultAclManager.printAcl(Acl acl) - -
-          Generates an ACL string for inclusion in a wiki page, based on a supplied Acl object.
- voidDefaultAclManager.setPermissions(WikiPage page, - Acl acl) - -
-          Sets the access control list for the page and persists it by prepending - it to the wiki page markup and saving the page.
- voidAclManager.setPermissions(WikiPage page, - Acl acl) - -
-          Sets the access control list for the page and persists it.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
-Copyright © {inceptionYear}-2014 The Apache Software Foundation. All rights reserved. - - http://git-wip-us.apache.org/repos/asf/jspwiki-site/blob/2e9374f1/apidocs/2.10.1/org/apache/wiki/auth/acl/class-use/AclEntry.html ---------------------------------------------------------------------- diff --git a/apidocs/2.10.1/org/apache/wiki/auth/acl/class-use/AclEntry.html b/apidocs/2.10.1/org/apache/wiki/auth/acl/class-use/AclEntry.html deleted file mode 100755 index 9410346..0000000 --- a/apidocs/2.10.1/org/apache/wiki/auth/acl/class-use/AclEntry.html +++ /dev/null @@ -1,271 +0,0 @@ - - - - - - - -Uses of Interface org.apache.wiki.auth.acl.AclEntry (Apache JSPWiki Main War 2.10.1 API) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Interface
org.apache.wiki.auth.acl.AclEntry

-
- - - - - - - - - -
-Packages that use AclEntry
org.apache.wiki.auth.aclAccess Control List implementation. 
-  -

- - - - - -
-Uses of AclEntry in org.apache.wiki.auth.acl
-  -

- - - - - - - - - -
Classes in org.apache.wiki.auth.acl that implement AclEntry
- classAclEntryImpl - -
-          Implementation of a JSPWiki AclEntry.
-  -

- - - - - - - - - - - - - -
Methods in org.apache.wiki.auth.acl that return AclEntry
- AclEntryAclImpl.getEntry(Principal principal) - -
-          Returns an AclEntry for a supplied Principal, or null if - the Principal does not have a matching AclEntry.
- AclEntryAcl.getEntry(Principal principal) - -
-          Returns an AclEntry for a supplied Principal, or null if - the Principal does not have a matching AclEntry.
-  -

- - - - - - - - - - - - - -
Methods in org.apache.wiki.auth.acl that return types with arguments of type AclEntry
- Enumeration<AclEntry>AclImpl.entries() - -
-          Returns an enumeration of the entries in this ACL.
- Enumeration<AclEntry>Acl.entries() - -
-          Returns an enumeration of the entries in this ACL.
-  -

- - - - - - - - - - - - - - - - - - - - - -
Methods in org.apache.wiki.auth.acl with parameters of type AclEntry
- booleanAclImpl.addEntry(AclEntry entry) - -
-          Adds an ACL entry to this ACL.
- booleanAcl.addEntry(AclEntry entry) - -
-          Adds an ACL entry to this ACL.
- booleanAclImpl.removeEntry(AclEntry entry) - -
-          Removes an ACL entry from this ACL.
- booleanAcl.removeEntry(AclEntry entry) - -
-          Removes an ACL entry from this ACL.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
-Copyright © {inceptionYear}-2014 The Apache Software Foundation. All rights reserved. - - http://git-wip-us.apache.org/repos/asf/jspwiki-site/blob/2e9374f1/apidocs/2.10.1/org/apache/wiki/auth/acl/class-use/AclEntryImpl.html ---------------------------------------------------------------------- diff --git a/apidocs/2.10.1/org/apache/wiki/auth/acl/class-use/AclEntryImpl.html b/apidocs/2.10.1/org/apache/wiki/auth/acl/class-use/AclEntryImpl.html deleted file mode 100755 index 976ebbe..0000000 --- a/apidocs/2.10.1/org/apache/wiki/auth/acl/class-use/AclEntryImpl.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - - - -Uses of Class org.apache.wiki.auth.acl.AclEntryImpl (Apache JSPWiki Main War 2.10.1 API) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
org.apache.wiki.auth.acl.AclEntryImpl

-
-No usage of org.apache.wiki.auth.acl.AclEntryImpl -

-


- - - - - - - - - - - - - - - -
- -
- - - -
-Copyright © {inceptionYear}-2014 The Apache Software Foundation. All rights reserved. - - http://git-wip-us.apache.org/repos/asf/jspwiki-site/blob/2e9374f1/apidocs/2.10.1/org/apache/wiki/auth/acl/class-use/AclImpl.html ---------------------------------------------------------------------- diff --git a/apidocs/2.10.1/org/apache/wiki/auth/acl/class-use/AclImpl.html b/apidocs/2.10.1/org/apache/wiki/auth/acl/class-use/AclImpl.html deleted file mode 100755 index bf4d9b7..0000000 --- a/apidocs/2.10.1/org/apache/wiki/auth/acl/class-use/AclImpl.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - - - -Uses of Class org.apache.wiki.auth.acl.AclImpl (Apache JSPWiki Main War 2.10.1 API) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
org.apache.wiki.auth.acl.AclImpl

-
-No usage of org.apache.wiki.auth.acl.AclImpl -

-


- - - - - - - - - - - - - - - -
- -
- - - -
-Copyright © {inceptionYear}-2014 The Apache Software Foundation. All rights reserved. - - http://git-wip-us.apache.org/repos/asf/jspwiki-site/blob/2e9374f1/apidocs/2.10.1/org/apache/wiki/auth/acl/class-use/AclManager.html ---------------------------------------------------------------------- diff --git a/apidocs/2.10.1/org/apache/wiki/auth/acl/class-use/AclManager.html b/apidocs/2.10.1/org/apache/wiki/auth/acl/class-use/AclManager.html deleted file mode 100755 index 71a552e..0000000 --- a/apidocs/2.10.1/org/apache/wiki/auth/acl/class-use/AclManager.html +++ /dev/null @@ -1,210 +0,0 @@ - - - - - - - -Uses of Interface org.apache.wiki.auth.acl.AclManager (Apache JSPWiki Main War 2.10.1 API) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Interface
org.apache.wiki.auth.acl.AclManager

-
- - - - - - - - - - - - - -
-Packages that use AclManager
org.apache.wikiThe chief package of JSPWiki. 
org.apache.wiki.auth.aclAccess Control List implementation. 
-  -

- - - - - -
-Uses of AclManager in org.apache.wiki
-  -

- - - - - - - - - -
Methods in org.apache.wiki that return AclManager
- AclManagerWikiEngine.getAclManager() - -
-          Returns the AclManager employed by this WikiEngine.
-  -

- - - - - -
-Uses of AclManager in org.apache.wiki.auth.acl
-  -

- - - - - - - - - -
Classes in org.apache.wiki.auth.acl that implement AclManager
- classDefaultAclManager - -
-          Default implementation that parses Acls from wiki page markup.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
-Copyright © {inceptionYear}-2014 The Apache Software Foundation. All rights reserved. - - http://git-wip-us.apache.org/repos/asf/jspwiki-site/blob/2e9374f1/apidocs/2.10.1/org/apache/wiki/auth/acl/class-use/DefaultAclManager.html ---------------------------------------------------------------------- diff --git a/apidocs/2.10.1/org/apache/wiki/auth/acl/class-use/DefaultAclManager.html b/apidocs/2.10.1/org/apache/wiki/auth/acl/class-use/DefaultAclManager.html deleted file mode 100755 index c9f4396..0000000 --- a/apidocs/2.10.1/org/apache/wiki/auth/acl/class-use/DefaultAclManager.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - - - -Uses of Class org.apache.wiki.auth.acl.DefaultAclManager (Apache JSPWiki Main War 2.10.1 API) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
org.apache.wiki.auth.acl.DefaultAclManager

-
-No usage of org.apache.wiki.auth.acl.DefaultAclManager -

-


- - - - - - - - - - - - - - - -
- -
- - - -
-Copyright © {inceptionYear}-2014 The Apache Software Foundation. All rights reserved. - -