Package com.teamdev.jxbrowser.user
Interface UserDataProfile
public interface UserDataProfile
User's profile data containing address and contact information used for web form
autofill functionality.
Please note, this class is for storing autofill data and should not be confused with a browser's user profile, which manages settings, bookmarks, extensions, etc.
- Since:
- 7.23
- See Also:
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptiondefault Addressaddress()The address of the user.default StringThe company of the user.default Stringemail()The email of the user.default StringfullName()The full name of the user.static UserDataProfile.BuildernewBuilder(Address address) Creates a newUserDataProfilebuilder with the given required parameters.default StringThe phone number of the user.
-
Method Details
-
newBuilder
Creates a newUserDataProfilebuilder with the given required parameters.- Parameters:
address- the user's address- Returns:
- a new
TouchPoint.Builderinstance - Since:
- 8.0.0
-
fullName
The full name of the user. -
email
The email of the user. -
companyName
The company of the user. -
phoneNumber
The phone number of the user. -
address
The address of the user.
-