-
public interface SharedDataHelperFactory
SharedDataHelperFactory provides an interface used to create SharedDataHelpers.- See Also:
SharedDataHelper
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SharedDataHelper
getDataHelper(ClassLoader owner)
Return a SharedDataHelper for a given ClassLoader.
-
-
-
Method Detail
-
getDataHelper
SharedDataHelper getDataHelper(ClassLoader owner)
Return a SharedDataHelper for a given ClassLoader.Creates a new SharedDataHelper if one cannot be found, otherwise if a SharedDataHelper already exists for the ClassLoader, the existing Helper is returned.
Returns null if a SecurityManager is installed and there is no SharedClassPermission for the ClassLoader specified.
- Parameters:
owner
- the ClassLoader which owns the SharedDataHelper- Returns:
- SharedDataHelper a new or existing SharedDataHelper
- See Also:
SharedDataHelper
-
-