I am looking for class which can enable me to manage user specific properties.
In my portal different users have different properties so how can I make it using Liferay API.
For example I can show you how it works in JBoss Portal:
Map<String, Object> properties = this.userProfileModule.getProperties(portalUser);
and from other side we can add some new properties like this:
this.userProfileModule.setProperty(user, name, value);
I need such a mechanism. I'd appreciate any help.