Details
-
Task
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
None
-
None
Description
This task involves renaming BridgePortalContextImpl to PortalContextBridgeImpl.
In addition, it should implement PortalContext instead of BridgePortalContext.
Finally, since the sole purpose of the BridgePortalContext interface will be to provide constants, it should become a final class with a private constructor in order to prevent instantiation. For example:
public final class BridgePortalContext { // Prevent instantiation since the sole purpose of this class is to provide constants. private BridgePortalContext() { throw new AssertionError(); } ... }