1 package org.exoplatform.services.organization;2 3 public interface Actor {4 5 /**6 * the name for the actor. Note that preferrably, the name should be7 * unique for all actors. 8 */9 String getName();10 }11