001 package org.kuali.maven.plugins.graph.sanitize; 002 003 004 public interface Sanitizer<T> { 005 006 void sanitize(T object); 007 008 }