Parameters.requireNonNull(siteId, "siteId");
SiteKey siteKey = Util.from(siteId);
try {
PortalConfig portalConfig = dataStorage.getPortalConfig(siteKey.getTypeName(), siteKey.getName());
return (portalConfig == null) ? null : new SiteImpl(portalConfig);
} catch (Throwable e) {
throw new ApiException("Failed to get site", e);
}
}