use of com.emc.storageos.db.client.model.uimodels.CatalogImage in project coprhd-controller by CoprHD.
the class CatalogImageService method getCatalogImageById.
private CatalogImage getCatalogImageById(URI id, boolean checkInactive) {
CatalogImage catalogImage = catalogImageManager.getCatalogImageById(id);
ArgValidator.checkEntity(catalogImage, id, isIdEmbeddedInURL(id), checkInactive);
return catalogImage;
}
Aggregations