/** * * Copyright (c) 2014, the Railo Company Ltd. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library. If not, see <http://www.gnu.org/licenses/>. * **/ package lucee.runtime.type.scope.session; import lucee.commons.io.log.Log; import lucee.commons.lang.types.RefBoolean; import lucee.runtime.PageContext; import lucee.runtime.type.Collection; import lucee.runtime.type.scope.Session; import lucee.runtime.type.scope.storage.MemoryScope; import lucee.runtime.type.scope.storage.StorageScopeMemory; public class SessionMemory extends StorageScopeMemory implements Session,MemoryScope { private static final long serialVersionUID = 7703261878730061485L; /** * Constructor of the class * @param pc * @param isNew * @param name */ protected SessionMemory(PageContext pc,Log log) { super(pc,"session",SCOPE_SESSION,log); } /** * Constructor of the class, clone existing * @param other */ protected SessionMemory(StorageScopeMemory other,boolean deepCopy) { super(other,deepCopy); } /** * load a new instance of the class * @param pc * @param isNew * @return */ public static Session getInstance(PageContext pc, RefBoolean isNew, Log log) { isNew.setValue(true); return new SessionMemory(pc,log); } @Override public Collection duplicate(boolean deepCopy) { return new SessionMemory(this,deepCopy); } }