1 18 19 package org.objectweb.kilim.model.mapping; 20 21 import org.objectweb.kilim.KilimException; 22 23 37 38 public interface MappingStrategy { 39 40 46 void setDefaultMapper(Mapper aMapper) throws KilimException; 47 48 52 Mapper getDefaultMapper(); 53 54 61 void setPerTemplateMapper(String aName, Mapper aMapper) throws KilimException; 62 63 69 Mapper getPerTemplateMapper(String aName) throws KilimException; 70 71 77 void setPerInstanceMapper(String aName, Mapper aMapper) throws KilimException; 78 79 85 Mapper getPerInstanceMapper(String aName) throws KilimException; 86 } 87 | Popular Tags |