if (SiteLayoutExportTask.FILES.contains(file)) {
// Unmarshal site layout data
Marshaller<PortalConfig> marshaller = operationContext.getBindingProvider().getMarshaller(
PortalConfig.class, ContentType.XML);
PortalConfig portalConfig = marshaller.unmarshal(zis);
portalConfig.setType(siteKey.getTypeName());
if (!portalConfig.getName().equals(siteKey.getName())) {
throw new OperationException(operationName,
"Name of site does not match that of the zip entry site name.");
}
// Add import task to run later