I have a java class containing my Database settings (username, password). I want to use this class in all the packages of my plugin but I don't want it to be available to other plugins.
How can I do that? Removing the public attribute of the class hides it from all other packages and leaving it public exposes it to all other plugins wich is bad in my case.
Isn't there some kind of keyword like protected for functions and variables?