Inherits from | |
Conforms to | |
Framework | /System/Library/Frameworks/Collaboration.framework |
Availability | Available in Mac OS X v10.5 and later. |
Companion guide | |
Declared in | CBIdentityAuthority.h |
An identity authority is a database that stores information about identities. The CBIdentityAuthority
class defines one or more identity authorities. This database can be searched for identities in conjunction with the CBIdentity
class factory methods.
Returns an identity authority that contains the identities in both the local and the network-bound authorities.
+ (CBIdentityAuthority *)defaultIdentityAuthority
The local and network-bound identity authorities.
The default identity authority is the logical union of the identities in the local and managed authorities.
CBIdentityAuthority.h
Returns an identity authority specified by a given Core Services Identity authority object.
+ (CBIdentityAuthority *)identityAuthorityWithCSIdentityAuthority:(CSIdentityAuthorityRef)CSIdentityAuthority
The Core Services Identity opaque object.
The identity authority object for use with the Collaboration framework.
This method, along with CSIdentityAuthority
, is used for interoperability with the Core Services Identity API.
CBIdentityAuthority.h
Returns the identity authority on the local system.
+ (CBIdentityAuthority *)localIdentityAuthority
The identity authority on the local system.
Any identities stored on the local system are contained within this identity authority.
CBIdentityAuthority.h
Returns the identity authority that contains all the identities in bound network directory servers.
+ (CBIdentityAuthority *)managedIdentityAuthority
The identity authorities in bound network directory servers.
If you are bound to a network directory server (such as an LDAP server) that has an identity authority, use this method to search those authorities.
CBIdentityAuthority.h
Returns an identity authority for use with the Core Services Identity API.
- (CSIdentityAuthorityRef)CSIdentityAuthority
The opaque authority object for use with the Core Services Identity API.
This method, along with identityAuthorityWithCSIdentityAuthority:
, is used for interoperability with the Core Services Identity API.
CBIdentityAuthority.h
Returns the localized name of the identity authority.
- (NSString *)localizedName
The computer’s name if the authority is local, or Managed Network Directory if the authority is managed.
CBIdentityAuthority.h
© 2007 Apple Inc. All Rights Reserved. (Last updated: 2007-05-14)