Uses of Class
com.avoka.fc.core.entity.UserProfile
-
Packages that use UserProfile Package Description com.avoka.fc.core.dao Provides the Data Access Objects used by SmartForm Manager.com.avoka.fc.core.entity Provides the SmartForm Manager entity classes.com.avoka.fc.core.entity.auto Provides the SmartForm Manager entity base classes, which are being maintained by Cayenne.com.avoka.fc.core.service.test Provides web automated test services. -
-
Uses of UserProfile in com.avoka.fc.core.dao
Methods in com.avoka.fc.core.dao that return UserProfile Modifier and Type Method Description UserProfile
UserProfileDao. deleteProfile(UserProfile userProfile)
Delete the given user profile, and return the next user profile.UserProfile
UserProfileDao. getProfile(UserAccount userAccount, String profileName)
Return the user profile with a given name for a given user accountUserProfile
UserProfileDao. getProfileForPK(Object id)
Return the user profile with the specified OIDMethods in com.avoka.fc.core.dao that return types with arguments of type UserProfile Modifier and Type Method Description List<UserProfile>
UserProfileDao. getProfilesForUser(UserAccount user)
Return the user profiles for the given user account, ordered by profile nameMethods in com.avoka.fc.core.dao with parameters of type UserProfile Modifier and Type Method Description UserProfile
UserProfileDao. deleteProfile(UserProfile userProfile)
Delete the given user profile, and return the next user profile.void
UserPropertyDao. initialiseUserProperties(UserProfile userProfile)
Create property values for each user property for a new user profilevoid
UserProfileDao. makeCurrentProfile(UserProfile userProfile)
Mark a new user profile as the current one for the user.void
UserProfileDao. unsetCurrentProfile(UserProfile oldCurrentProfile)
Unset the current flag on a given user profile. -
Uses of UserProfile in com.avoka.fc.core.entity
Methods in com.avoka.fc.core.entity that return UserProfile Modifier and Type Method Description UserProfile
UserAccount. getActiveProfile()
Return the currently activeUserProfile
for this userMethods in com.avoka.fc.core.entity that return types with arguments of type UserProfile Modifier and Type Method Description List<UserProfile>
UserAccount. getUserProfilesOrdered()
Return the user profiles ordered by profile name with the active profile at the top. -
Uses of UserProfile in com.avoka.fc.core.entity.auto
Fields in com.avoka.fc.core.entity.auto with type parameters of type UserProfile Modifier and Type Field Description static org.apache.cayenne.exp.Property<UserProfile>
_UserProperty. PROFILE
Provides the 'PROFILE' property.static org.apache.cayenne.exp.Property<UserProfile>
_RequestLog. USER_PROFILE
Provides the 'USER_PROFILE' property.static org.apache.cayenne.exp.Property<UserProfile>
_Submission. USER_PROFILE
Provides the 'USER_PROFILE' property.static org.apache.cayenne.exp.Property<List<UserProfile>>
_UserAccount. USER_PROFILES
Provides the 'USER_PROFILES' property.Methods in com.avoka.fc.core.entity.auto that return UserProfile Modifier and Type Method Description UserProfile
_UserProperty. getProfile()
Return the Profile.UserProfile
_RequestLog. getUserProfile()
Return the UserProfile.UserProfile
_Submission. getUserProfile()
Return the UserProfile.Methods in com.avoka.fc.core.entity.auto that return types with arguments of type UserProfile Modifier and Type Method Description List<UserProfile>
_UserAccount. getUserProfiles()
Return the UserProfiles.Methods in com.avoka.fc.core.entity.auto with parameters of type UserProfile Modifier and Type Method Description void
_UserAccount. addToUserProfiles(UserProfile obj)
Add the UserProfiles object.void
_UserAccount. removeFromUserProfiles(UserProfile obj)
Remove the UserProfiles object.void
_UserProperty. setProfile(UserProfile profile)
Set the Profile.void
_RequestLog. setUserProfile(UserProfile userProfile)
Set the UserProfile.void
_Submission. setUserProfile(UserProfile userProfile)
Set the UserProfile. -
Uses of UserProfile in com.avoka.fc.core.service.test
Methods in com.avoka.fc.core.service.test with parameters of type UserProfile Modifier and Type Method Description UserProperty
MockEntityService. createUserProperty(UserProfile userProfile, PropertyType propertyType, String value)
Create a user property value for a user profile and property type.
-