blob: ffd935e252ecf8024f8bd361f54b420c916acbd1 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.catalina.session;
import java.beans.PropertyChangeListener;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.apache.catalina.Manager;
import org.apache.catalina.Session;
import org.apache.catalina.Store;
class TesterStore implements Store {
private Manager manager;
private Map<String, Session> sessions = new HashMap<>();
private List<String> savedIds = new ArrayList<>();
List<String> getSavedIds() {
return savedIds;
}
@Override
public Manager getManager() {
return this.manager;
}
@Override
public void setManager(Manager manager) {
this.manager = manager;
}
@Override
public int getSize() throws IOException {
return savedIds.size();
}
@Override
public void addPropertyChangeListener(PropertyChangeListener listener) {
}
@Override
public String[] keys() throws IOException {
return new ArrayList<>(sessions.keySet()).toArray(new String[] {});
}
@Override
public Session load(String id) throws ClassNotFoundException,
IOException {
return sessions.get(id);
}
@Override
public void remove(String id) throws IOException {
sessions.remove(id);
}
@Override
public void clear() throws IOException {
}
@Override
public void removePropertyChangeListener(PropertyChangeListener listener) {
}
@Override
public void save(Session session) throws IOException {
sessions.put(session.getId(), session);
savedIds.add(session.getId());
}
}