Files
alfresco-community-repo/source/test-java/org/alfresco/traitextender/TestExtension.java
Bogdan Horje 005c9543f5 CM-690 extensions
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@117489 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2015-11-12 19:32:24 +00:00

15 lines
313 B
Java

package org.alfresco.traitextender;
import java.util.List;
public interface TestExtension
{
String privateServiceMethod1(String s);
String publicServiceMethod2(String s);
String publicServiceMethod3(String s);
void publicServiceMethod3(TestService s,List<Integer> traitIdentities);
}