001package com.ganteater.ae.logfilter;
002
003public interface LogFilter {
004
005        public String filter(String text);
006
007}