package org.mongodb.morphia.mapping.lazy.proxy;


import org.mongodb.morphia.Key;

import java.util.Map;


Author:Uwe Schaefer, (us@thomas-daily.de)
/** * @author Uwe Schaefer, (us@thomas-daily.de) */
public interface ProxiedEntityReferenceMap extends ProxiedReference {
Returns:the reference map
/** * @return the reference map */
//CHECKSTYLE:OFF Map<Object, Key<?>> __getReferenceMap(); //CHECKSTYLE:ON //CHECKSTYLE:OFF void __put(Object key, Key<?> referenceKey); //CHECKSTYLE:ON }