Monday, September 23, 2013

Interface Actor.


A functional interface to describe the Actor Role. 

T - Type,
P - Paper or Role
M - Mass of result of perform an act.


package org.nanotek.cms.domain;

public interface Actor <T,P,M>{

public M doAct(P role);

}