How to Override @Propertyoption value from run mode specific configuration ? 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 = "Profile username", label = "Enter User Name", passwordValue = "")private static final String PASSWORD = "user.password";private String password;@Property(name = "Gender", description = "Gender", label = "Gender", options = {@PropertyOption(name = "Male", value = "male"),@PropertyOption(name = "Female", value = "female") }, value = "female")private static final String GENDER = "user.gender";private String gender;protected void activate(Map<String, Object> props){this.username = (String) props.