mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-30 18:15:39 +00:00
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
16 lines
480 B
Java
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);
|
|
}
|