647648649650651652653654655656657
// Search styles of current site for (Module m : site.getModules()) { ImageStyle style = m.getImageStyle(styleId); if (style != null) { ResponseBuilder response = Response.ok(style.toXml()); return response.build(); } } // Search global styles
655656657658659660661662663664665
} // Search global styles for (ImageStyle style : styles) { if (style.getIdentifier().equals(styleId)) { ResponseBuilder response = Response.ok(style.toXml()); return response.build(); } } // The image style was not found