1 16 package org.springframework.webflow.core.collection; 17 18 import org.springframework.binding.collection.SharedMap; 19 20 29 public class LocalSharedAttributeMap extends LocalAttributeMap implements SharedAttributeMap { 30 31 35 public LocalSharedAttributeMap(SharedMap sharedMap) { 36 super(sharedMap); 37 } 38 39 public Object getMutex() { 40 return getSharedMap().getMutex(); 41 } 42 43 46 protected SharedMap getSharedMap() { 47 return (SharedMap)getMapInternal(); 48 } 49 } | Popular Tags |