@Produces({APPLICATION_JSON, APPLICATION_XML})
public List<PropertyXO> get() {
List<PropertyXO> properties = Lists.newArrayList();
properties.add(
new PropertyXO().withKey("keepAlive")
.withValue(Boolean.toString(SystemPropertiesHelper.getBoolean("nexus.ui.keepAlive", true)))
);
return properties;
}