Dear All,I have created a OSGI component to read some user related
setting from the /system/console/configMgr. The code for OSGI component
is some thing like this.@Component(name = "Profile Configuration",
immediate = true, metatype = true)public class ProfileConfiguration
{@Property(name = "User Name", value = "", description = "Profile
username", label = "Enter User Name")private static final String
USER_NAME = "user.name";private String username;@Property(name =
"Password", description = "Pro...