blob: 74cdb3d1749f0a1b772a7941a4caa511d5f5442f [file] [log] [blame]
/**
*
* Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
*/
package org.eclipse.osbp.ui.api.userfilter;
import java.util.HashMap;
import java.util.List;
public class UserFilterMap {
/** The in filter map. */
private HashMap<String, List<String>> inFilterMap = new HashMap<>();
/** The not filter map. */
private HashMap<String, List<String>> notFilterMap = new HashMap<>();
/**
* Gets the in filter map.
*
* @return the in filter map
*/
public HashMap<String, List<String>> getInFilterMap() {
return inFilterMap;
}
/**
* Gets the not filter map.
*
* @return the not filter map
*/
public HashMap<String, List<String>> getNotFilterMap() {
return notFilterMap;
}
}