If the objects do not extend another class (so they inherit from Object) then their hashCode is a function of their object reference. That means if you use them as the key in a HashMap (or as an element of a HashSet), you can only expect to find them if you use the exact same instance of the object to do the look up.
The "contract" is that if two objects are equal then they must have the same hashCode, however your analysis is correct - hashCode only matters in the collections API (HashSet, HashMap, etc.). You should know how you will be using the API so if you know you will not be using the hashCode, and you do not expose this objects of the API in your public API, then there is no problem.