package org.alfresco.repo.action; import org.springframework.beans.factory.BeanNameAware; // TODO this is no longer required /** * Common resouce abstract base class. * * @author Roy Wetherall */ public abstract class CommonResourceAbstractBase implements BeanNameAware { /** * The bean name */ protected String name; /** * Set the bean name * * @param name * the bean name */ public void setBeanName(String name) { this.name = name; } }