/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package br.uff.ic.gems.peixeespadacliente.strategy.main; import br.uff.ic.gems.peixeespadacliente.configuration.Configuration; /** * * @author GEMS */ public class DefaultSearchStrategy implements SearchStrategy{ @Override public Configuration execute() { throw new UnsupportedOperationException("Not supported yet."); } }