Example usage for com.liferay.portal.kernel.util ContentTypes APPLICATION_XSLT_XML

List of usage examples for com.liferay.portal.kernel.util ContentTypes APPLICATION_XSLT_XML

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.util ContentTypes APPLICATION_XSLT_XML.

Prototype

String APPLICATION_XSLT_XML

To view the source code for com.liferay.portal.kernel.util ContentTypes APPLICATION_XSLT_XML.

Click Source Link

Usage

From source file:com.liferay.dynamic.data.mapping.web.internal.portlet.action.AddTemplateMVCActionCommand.java

License:Open Source License

protected boolean isValidContentType(String contentType) {
    if (contentType.equals(ContentTypes.APPLICATION_XSLT_XML) || contentType.startsWith(ContentTypes.TEXT)) {

        return true;
    }/* ww w  .jav a2s  .com*/

    return false;
}