* Return a {@link IdentifierMap} for the given CMIS type.
* @param fromType CMIS type
* @return <code>IdentifierMap</code>
*/
public IdentifierMap getIdentifierMap(TypeDefinition fromType) {
IdentifierMap identifierMap = ID_MAPS.get(fromType.getId());
if (identifierMap == null) {
throw new CmisRuntimeException("Not supported: query for type " + fromType.getId());
}
else {
return identifierMap;