Example usage for com.liferay.portal.deploy.hot HookHotDeployListener SUPPORTED_PROPERTIES

List of usage examples for com.liferay.portal.deploy.hot HookHotDeployListener SUPPORTED_PROPERTIES

Introduction

In this page you can find the example usage for com.liferay.portal.deploy.hot HookHotDeployListener SUPPORTED_PROPERTIES.

Prototype

String[] SUPPORTED_PROPERTIES

To view the source code for com.liferay.portal.deploy.hot HookHotDeployListener SUPPORTED_PROPERTIES.

Click Source Link

Usage

From source file:com.liferay.ide.server.core.support.GetSupportedHookProperties.java

License:Open Source License

@Override
void writeOutput(FileWriter writer) throws IOException {

    for (String supportedProperty : HookHotDeployListener.SUPPORTED_PROPERTIES) {
        writer.write(supportedProperty);
        writer.write('\n');
    }//from  w  ww  .j a va 2 s.  co m
}