Package org.sonatype.nexus.wonderland.model

Examples of org.sonatype.nexus.wonderland.model.PropertyXO


  @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;
  }
View Full Code Here

TOP

Related Classes of org.sonatype.nexus.wonderland.model.PropertyXO

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.