Java Control Panel is a utility tool to control how Java applications run on your system. Your Java applications may need specific runtime properties to be configured in the Java Control Panel.
Let's say, you need to disable the 'TLS certificate revocation checks' before launching your application.
To configure such properties in the Java Control Panel, you can use Java’s deployment.properties file. It is present at the following location.
To disable the 'TLS certificate revocation checks', use Write File action and add below line to the deployment.properties file.
deployment.security.tls.revocation.check=NO_CHECK
Reference: Oracle Docs