de.mklinger.qetcher.liferay.client.impl.htmlinliner.QetcherHtmlInlineConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qetcher-adapter-liferay-71 Show documentation
Show all versions of qetcher-adapter-liferay-71 Show documentation
Qetcher Liferay 7.1.x Adapter
The newest version!
package de.mklinger.qetcher.liferay.client.impl.htmlinliner;
/**
* @author Marc Klinger - mklinger[at]mklinger[dot]de
*/
public class QetcherHtmlInlineConfiguration {
public boolean isInlineExternalImagesForHtml() {
return true;
}
public boolean isInlineInternalImagesForHtml() {
return true;
}
public boolean isInlineCssForHtml() {
return true;
}
public boolean isInlineJsForHtml() {
return true;
}
}