![JAR search and dependency download from the Maven repository](/logo.png)
org.cloudfoundry.identity.uaa.zone.beans.IdentityZoneManagerImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudfoundry-identity-server Show documentation
Show all versions of cloudfoundry-identity-server Show documentation
Cloud Foundry User Account and Authentication
The newest version!
package org.cloudfoundry.identity.uaa.zone.beans;
import org.cloudfoundry.identity.uaa.zone.IdentityZone;
import org.cloudfoundry.identity.uaa.zone.IdentityZoneHolder;
import org.springframework.stereotype.Component;
@Component
public class IdentityZoneManagerImpl implements IdentityZoneManager {
@Override
public IdentityZone getCurrentIdentityZone() {
return IdentityZoneHolder.get();
}
@Override
public String getCurrentIdentityZoneId() {
return IdentityZoneHolder.getCurrentZoneId();
}
@Override
public boolean isCurrentZoneUaa() {
return IdentityZoneHolder.isUaa();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy