com.enonic.xp.shared.SharedMapService Maven / Gradle / Ivy
The newest version!
package com.enonic.xp.shared;
public interface SharedMapService
{
/**
* @param name name of a shared map
* @param the type of keys maintained by this map. Can only be standard Java classes.
* @param the type of values maintained by this map. Can only be standard Java classes.
* @return map instance that is shared across all XP nodes
*/
SharedMap getSharedMap( String name );
}