1 /*
2 * Filter.java
3 *
4 * Created on February 11, 2003, 4:43 AM
5 */
6
7 package com.mlw.fps.model.business.vo;
8
9 import java.text.SimpleDateFormat;
10 import java.util.HashMap;
11 import java.util.Map;
12
13 /***
14 *
15 * @author Matthew Wilson
16 */
17 public class SystemFilters implements com.mlw.util.dao.Filter
18 {
19 public static final SimpleDateFormat FORMAT = new SimpleDateFormat("MM/dd/yyyy");
20 private Map filters = new HashMap();
21
22 /*** Creates a new instance of Filter
23 */
24 public SystemFilters()
25 {
26 }
27
28 public void addFilter(String key, Object value)
29 {
30 filters.put(key,value);
31 }
32
33 public Object getFilter(String key)
34 {
35 return filters.get(key);
36 }
37 public void removeFilter(String key)
38 {
39 filters.remove(key);
40 }
41
42 public Map getFilters()
43 {
44 return filters;
45 }
46 }
This page was automatically generated by Maven