protected XMLDirectMapping getFetchAttributeMapping() {
XMLDirectMapping fetchMapping = new XMLDirectMapping();
fetchMapping.setAttributeName("m_fetch");
fetchMapping.setGetMethodName("getFetch");
fetchMapping.setSetMethodName("setFetch");
fetchMapping.setConverter(new EnumTypeConverter(fetchMapping, FetchType.class, false));
fetchMapping.setXPath("@fetch");
return fetchMapping;
}