Class variable is associated with class and you don't need to instantiate class to be able to access it.
for the main class, final variable may seem excessive here but its goal is to make sure that variable value can not changes once assigned. You could read more about final variable here -
http://programmers.stackexchange.com/questions/115690/why-declare-final-variables-inside-methods
~ seleniumtests.com