com.helger.web.scope.singleton.AbstractGlobalWebSingleton Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ph-web Show documentation
Show all versions of ph-web Show documentation
Java library with basic web functionality
/*
* Copyright (C) 2014-2024 Philip Helger (www.helger.com)
* philip[at]helger[dot]com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.helger.web.scope.singleton;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import com.helger.commons.collection.impl.ICommonsList;
import com.helger.scope.singleton.AbstractSingleton;
import com.helger.web.scope.IGlobalWebScope;
import com.helger.web.scope.mgr.WebScopeManager;
/**
* This is the base class for singleton objects that reside in the global scope.
* The global scope is identical for web scope and non-web scope applications.
*
* @see com.helger.web.scope.mgr.EWebScope#GLOBAL
* @author Philip Helger
*/
public abstract class AbstractGlobalWebSingleton extends AbstractSingleton implements IWebSingleton
{
protected AbstractGlobalWebSingleton ()
{}
/**
* @param bMustBePresent
* if true
the scope must be present, false
* if it may be null
.
* @return The scope to be used for this type of singleton.
*/
@Nonnull
private static IGlobalWebScope _getStaticScope (final boolean bMustBePresent)
{
return bMustBePresent ? WebScopeManager.getGlobalScope () : WebScopeManager.getGlobalScopeOrNull ();
}
/**
* Get the singleton object in the current global web scope, using the passed
* class. If the singleton is not yet instantiated, a new instance is created.
*
* @param
* The type to be returned
* @param aClass
* The class to be used. May not be null
. The class must
* be public as needs to have a public no-argument constructor.
* @return The singleton object and never null
.
*/
@Nonnull
public static final T getGlobalSingleton (@Nonnull final Class aClass)
{
return getSingleton (_getStaticScope (true), aClass);
}
/**
* Get the singleton object if it is already instantiated inside the current
* global web scope or null
if it is not instantiated.
*
* @param
* The type to be returned
* @param aClass
* The class to be checked. May not be null
.
* @return The singleton for the specified class is already instantiated,
* null
otherwise.
*/
@Nullable
public static final T getGlobalSingletonIfInstantiated (@Nonnull final Class aClass)
{
return getSingletonIfInstantiated (_getStaticScope (false), aClass);
}
/**
* Check if a singleton is already instantiated inside the current global web
* scope
*
* @param aClass
* The class to be checked. May not be null
.
* @return true
if the singleton for the specified class is
* already instantiated, false
otherwise.
*/
public static final boolean isGlobalSingletonInstantiated (@Nonnull final Class extends AbstractGlobalWebSingleton> aClass)
{
return isSingletonInstantiated (_getStaticScope (false), aClass);
}
/**
* Get all singleton objects registered in the current global web scope.
*
* @return A non-null
list with all instances of this class in
* the current global web scope.
*/
@Nonnull
public static final ICommonsList getAllGlobalSingletons ()
{
return getAllSingletons (_getStaticScope (false), AbstractGlobalWebSingleton.class);
}
}