All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.drools.userprofile.User Maven / Gradle / Ivy

There is a newer version: 5.1.1
Show newest version
package org.drools.userprofile;

public class User extends OrganizationalEntity {
    UserProfile userProfile;
    
    public User() {
        super();
    }
    
    public User(String id) {
        super(id);
    }

	public UserProfile getUserProfile() {
		return userProfile;
	}

	public void setUserProfile(UserProfile userProfile) {
		this.userProfile = userProfile;
	}   
 
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy