Deprecated API

Deprecated Fields
com.plumtree.analytics.openusage.ASEventConstants.PROPERTY_USERID
            
 

Deprecated Methods
com.plumtree.analytics.openusage.IManagedEvent.getFact(String)
            
com.plumtree.analytics.openusage.IManagedEvent.getUserId()
          Use IManagedEvent.getUser() instead 
com.plumtree.analytics.openusage.IManagedEvent.setFact(String, Double)
            
com.plumtree.analytics.openusage.IManagedEvent.setFact(String, Float)
            
com.plumtree.analytics.openusage.IManagedEvent.setFact(String, Integer)
            
com.plumtree.analytics.openusage.IManagedEvent.setFact(String, Long)
            
com.plumtree.analytics.openusage.IManagedEvent.setFact(String, String)
            
com.plumtree.analytics.openusage.IManagedEvent.setFact(String, XPDateTime)
            
com.plumtree.analytics.openusage.IManagedEvent.setLongAsDateFact(String, Long)
            
com.plumtree.analytics.openusage.IManagedEvent.setUserId(Integer)
          Use IManagedEvent.setUser(String) instead
Example:

	Integer userId = ...;		// get the user ID
	String userName = ...;		// get the user name
	IManagedEvent event = ASEventFactory.createManagedEvent(eventName);
	// replace
	// event.setUserId(userId);
	// with
	event.setUser(userName);
	// or
	event.setUser(userId.toString());
 
 
 



Copyright © 2006 BEA Systems Inc. All Rights Reserved.