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

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

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

/**
 * UserProfile is a base class to represent user profile related information. As the user profile information various 
 * from application to application, the only common information we have in this base class is user id.
 * Then it is up to the sub class to provide application specific information, see DroolsTaskUserProfile.
 *   
 */
public class UserProfile {
	String id;
	
    public String getID(){
    	return id;
    }
    
    public void setID(String id){
    	this.id = id;
    }
 }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy