/* * Copyright 2014 Red Hat, Inc. and/or its affiliates. * * Licensed under the Eclipse Public License version 1.0, available at * http://www.eclipse.org/legal/epl-v10.html */ package test.org.jboss.forge.furnace.mocks.services; import javax.inject.Inject; import org.jboss.forge.furnace.services.Imported; /** * @author <a href="mailto:lincolnbaxter@gmail.com">Lincoln Baxter, III</a> */ public abstract class AbstractImportedBaseConsumer { @Inject private Imported<ExportedService> service; public ExportedService getService() { return service.get(); } }