1 package org.kuali.common.util.env.adapter; 2 3 public interface EnvAdapter<S, T> { 4 5 Class<S> getSourceType(); 6 7 T convert(S source); 8 }