javax.jcr.GuestCredentials Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
The newest version!
/*
* Copyright 2008 Day Management AG, Switzerland. All rights reserved.
*/
package javax.jcr;
/**
* GuestCredentials
implements the Credentials
* interface and is used to obtain a "guest", "public" or "anonymous" session.
* Note that the characteristics of the session created from the
* GuestCredentials
remain implementation specific.
*
* @since JCR 2.0
*/
public final class GuestCredentials implements Credentials {
/**
* The constructor creates a new GuestCredentials
object.
*/
public GuestCredentials() {
}
}