* @see HTTP.IHTTPAccess#setDefaultSessionProperty(int)
*/
public void setDefaultSessionProperty(int newSessionProperty) {
if ((SESSION_REQUIRED < newSessionProperty) ||
(newSessionProperty < SESSION_UNSPECIFIED)){
GenericException errorVar = new GenericException("Invalid Session Property");
ErrorMgr.addError(errorVar);
throw errorVar;
}
this.sessionProperty = newSessionProperty;
this.setSessionProperty(new TextData("/"), newSessionProperty);