# Headline
The headline feature intends to provide a capability to the Enterprise Edition tool administrators to flash important news/announcements about the tool to their users. Administrators can use this feature to flash announcements such as 'Tool will be unavailable from 9 am to 10 am on Aug 14 for maintenance purposes,' OR 'New Manual upload incidents feature is added'. In order to activate this feature, launch the tool with '-DheadLine' system property. The value passed in this property will be printed in the headline strip. The administrator should modify the 'launch-yc-server.sh' script to add this System property. Say current script looks like this:
java -Xms2g -Xmx4g -DlogDir=. -DuploadDir=. -jar webapp-runner.jar -AconnectionTimeout=3600000 --port 8080 yc.war &
1
Then 'headLine' system property should be added to it:
java -Xms2g -Xmx4g -DlogDir=. -DuploadDir=. -DheadLine="Tool will be unavailable from 9 am to 10 am on Aug 14 for maintenance purposes" -jar webapp-runner.jar -AconnectionTimeout=3600000 --port 8080 yc.war &
1
