Skip to main content
summaryrefslogtreecommitdiffstats
blob: c518b4bf06645083f62ebf6b370af86626e91879 (plain) (blame)
1
/*******************************************************************************
 * Copyright (c) 2007, 2008 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 ******************************************************************************
 *
 **/
/**
  * Object userProfile()
  * @type userProfile
  * @super Object
  * @class userProfile
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms535915.aspx
*/

function userProfile(){};
userProfile.prototype= new Object();
/**
  * function addReadRequest(sAttributeName,vReserved)
  * @param sAttributeName String
  * @param vReserved Boolean
  * @type Boolean
  * @return Boolean
  * @class userProfile
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms535929.aspx
*/

userProfile.prototype.addReadRequest=function(sAttributeName,vReserved){};
/**
  * function clearRequest()
  * @class userProfile
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms536355.aspx
*/

userProfile.prototype.clearRequest=function(){};
/**
  * function doReadRequest(vUsageCode,vFriendlyName,vDomain,vPath,vExpiration,vReserved)
  * @param vUsageCode Number
  * @param vFriendlyName String
  * @param vDomain String
  * @param vPath String
  * @param vExpiration Variant
  * @param vReserved Optional.				This parameter is reserved.
  * @class userProfile
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms536413.aspx
*/

userProfile.prototype.doReadRequest=function(vUsageCode,vFriendlyName,vDomain,vPath,vExpiration,vReserved){};
/**
  * function getAttribute(sAttributeName)
  * @param sAttributeName String
  * @type String
  * @return String
  * @class userProfile
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms536431.aspx
*/

userProfile.prototype.getAttribute=function(sAttributeName){};
/**
  * function setAttribute(sName,vValue)
  * @param sName String
  * @param vValue Number
  * @class userProfile
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms536739.aspx
*/

userProfile.prototype.setAttribute=function(sName,vValue){};

Back to the top