- java.lang.Object
-
- java.security.Permission
-
- java.security.BasicPermission
-
- javax.security.auth.kerberos.DelegationPermission
-
- All Implemented Interfaces:
- Serializable, Guard
public final class DelegationPermission extends BasicPermission implements Serializable
This class is used to restrict the usage of the Kerberos delegation model, ie: forwardable and proxiable tickets.The target name of this
Permission
specifies a pair of kerberos service principals. The first is the subordinate service principal being entrusted to use the TGT. The second service principal designates the target service the subordinate service principal is to interact with on behalf of the initiating KerberosPrincipal. This latter service principal is specified to restrict the use of a proxiable ticket.For example, to specify the "host" service use of a forwardable TGT the target permission is specified as follows:
DelegationPermission("\"host/foo.example.com@EXAMPLE.COM\" \"krbtgt/EXAMPLE.COM@EXAMPLE.COM\"");
To give the "backup" service a proxiable nfs service ticket the target permission might be specified:
DelegationPermission("\"backup/bar.example.com@EXAMPLE.COM\" \"nfs/home.EXAMPLE.COM@EXAMPLE.COM\"");
- Since:
- 1.4
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description DelegationPermission(String principals)
Create a newDelegationPermission
with the specified subordinate and target principals.DelegationPermission(String principals, String actions)
Create a newDelegationPermission
with the specified subordinate and target principals.
-
Method Summary
Methods Modifier and Type Method and Description boolean
equals(Object obj)
Checks two DelegationPermission objects for equality.int
hashCode()
Returns the hash code value for this object.boolean
implies(Permission p)
Checks if this Kerberos delegation permission object "implies" the specified permission.PermissionCollection
newPermissionCollection()
Returns a PermissionCollection object for storing DelegationPermission objects.-
Methods inherited from class java.security.BasicPermission
getActions
-
Methods inherited from class java.security.Permission
checkGuard, getName, toString
-
-
-
-
Constructor Detail
-
DelegationPermission
public DelegationPermission(String principals)
Create a newDelegationPermission
with the specified subordinate and target principals.- Parameters:
principals
- the name of the subordinate and target principals- Throws:
NullPointerException
- ifprincipals
isnull
.IllegalArgumentException
- ifprincipals
is empty.
-
DelegationPermission
public DelegationPermission(String principals, String actions)
Create a newDelegationPermission
with the specified subordinate and target principals.- Parameters:
principals
- the name of the subordinate and target principalsactions
- should be null.- Throws:
NullPointerException
- ifprincipals
isnull
.IllegalArgumentException
- ifprincipals
is empty.
-
-
Method Detail
-
implies
public boolean implies(Permission p)
Checks if this Kerberos delegation permission object "implies" the specified permission.If none of the above are true,
implies
returns false.- Overrides:
implies
in classBasicPermission
- Parameters:
p
- the permission to check against.- Returns:
- true if the specified permission is implied by this object, false if not.
-
equals
public boolean equals(Object obj)
Checks two DelegationPermission objects for equality.- Overrides:
equals
in classBasicPermission
- Parameters:
obj
- the object to test for equality with this object.- Returns:
- true if obj is a DelegationPermission, and has the same subordinate and service principal as this. DelegationPermission object.
- See Also:
Object.hashCode()
,HashMap
-
hashCode
public int hashCode()
Returns the hash code value for this object.- Overrides:
hashCode
in classBasicPermission
- Returns:
- a hash code value for this object.
- See Also:
Object.equals(java.lang.Object)
,System.identityHashCode(java.lang.Object)
-
newPermissionCollection
public PermissionCollection newPermissionCollection()
Returns a PermissionCollection object for storing DelegationPermission objects.
DelegationPermission objects must be stored in a manner that allows them to be inserted into the collection in any order, but that also enables the PermissionCollection implies method to be implemented in an efficient (and consistent) manner.- Overrides:
newPermissionCollection
in classBasicPermission
- Returns:
- a new PermissionCollection object suitable for storing DelegationPermissions.
-
-
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-javax/security/auth/kerberos/DelegationPermission.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.