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

org.jresearch.commons.base.domain.UserInfo Maven / Gradle / Ivy

The newest version!
package org.jresearch.commons.base.domain;

import java.util.List;
import java.util.Locale;

//This is not persistent entity
public class UserInfo extends AppObject {

	private Locale locale;
	private List userAttributes;

	public Locale getLocale() {
		return locale;
	}

	public void setLocale(final Locale locale) {
		this.locale = locale;
	}

	public List getUserAttributes() {
		return userAttributes;
	}

	public void setUserAttributes(final List userAttributes) {
		this.userAttributes = userAttributes;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy