Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[p2-dev] roaming and bundlepool in director app

If roaming is set to true (for a new profile) then the bundlepool location is forced to the destination value. Is this a requirement?

In
private void updateRoamingProperties(IProfile profile) throws CoreException

// make sure that we are set to be roaming before we update the values
if (!Boolean.valueOf(profile.getProperty(IProfile.PROP_ROAMING)).booleanValue())
return;
....
if (!destinationFile.equals(new File(profile.getProperty(IProfile.PROP_CACHE))))
request.setProfileProperty(IProfile.PROP_CACHE, destination);


Back to the top