Package wt.meeting
Interface WebexUserInfoDelegate
public interface WebexUserInfoDelegate
Supported API: true
Extendable: false
The purpose of this delegate is to allow customization of the way Webex account names and passwords are created and stored. It is used to create the account name and password. It is the responsibility of any class implementing this interface to conform with all Webex requirements. Names, email address, and password must conform to the Webex requirements listed in the Webex API guides. If storing any information is required to make this work, that is also the responsibility of the implementor.
-
Method Summary
Modifier and TypeMethodDescriptiongetEmail()
Supported API: true
Return the user's email address as a string.
Supported API: true
Supported API: true
Return the user's first name as a string.
Supported API: true
Return the user's Webex account name as a string.
Supported API: true
Return the user's last name as a string.voidinitialize(WTUser user)
Supported API: true
This will be called as the last step in object construction.
-
Method Details
-
getFirstName
String getFirstName()
Supported API: true- Returns:
- String
-
getLastName
String getLastName()
Supported API: true
Return the user's first name as a string.- Returns:
- String
-
getUsername
String getUsername()
Supported API: true
Return the user's last name as a string.- Returns:
- String
-
getPassword
String getPassword()
Supported API: true
Return the user's Webex account name as a string.- Returns:
- String
-
getEmail
String getEmail()
Supported API: true
Return the user's email address as a string.- Returns:
- String
-
initialize
Supported API: true
This will be called as the last step in object construction. Before it is called, there is no guarantee that any valid data will be returned by other methods of this class. After it is called, it is required that every call to a method of this class will return valid data.- Parameters:
user- The Windchill user object.- Throws:
WTException
-