private JPAEdmMappingModel mappingModel;
private InputStream mappingModelStream = null;
private String mappingModelName;
public JPAEdmMappingModelService(final ODataJPAContext ctx) {
JPAEdmExtension ext = null;
mappingModelName = ctx.getJPAEdmMappingModel();
if (mappingModelName == null) {
ext = ctx.getJPAEdmExtension();
if (ext != null) {
mappingModelStream = ext.getJPAEdmMappingModelStream();
}
}
mappingModelExists = mappingModelName != null || mappingModelStream != null ? true : false;
}