Gethin James c3b86192d6 Better fix for ALF-12541 - AMP files need to be able to be pinned to specific "edition(s)" of Alfresco
Share doesn't have a version.properties file so I need to cater for that scenario.  
I didn't want to create the LogOutput interface but its a stop-gap until the MMT gets re-worked.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@33793 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2012-02-09 10:56:44 +00:00

16 lines
480 B
Java

package org.alfresco.repo.module.tool;
/**
* I didn't want to create this. The module management tool has an outputMessage method. I needed an implentation-independent way of outputting
* a message from a helper class without relying on a Logging framework or a Module Management Tool Class.
*
* Hopefully this will be removed when the code is refactored.
*
* @author Gethin James
*/
public interface LogOutput
{
public void info(Object message);
}