It would be useful to have a java runtime option which does not do anything but only for informational purposes.
Background: We have a custom scheduler system with Web interface where we put command lines to start our jobs, and having that option would allow us to easily search by text criteria among these command lines.
So ideally this would look like
java <some_options> -XX:Comment="my comment" MyClass
Important thing, there must be a guarantee that this option will not affect the functioning of the program in any way.
The only idea I can think of is using option -D with non-existent property name. Is there any better idea?