Usually this is done by creating an interface providing the constant values, which then can be implemented by any class that wants to use the fields.
Example:
Code:
public interface MyConstants{
public final String CONST = "CONST";
}
public class UsingTheConstants implements MyConstants{
...
}