How to disable cookies using webdriver for Chrome and FireFox JAVA?

How to disable cookies using webdriver for Chrome and FireFox JAVA?

Hi Charity,

FirefoxProfile profile = new ProfilesIni().getProfile("default");
profile.setPreference("network.cookie.cookieBehavior",2);
driver = new FirefoxDriver(profile);