Package com.commafeed.frontend.model

Examples of com.commafeed.frontend.model.ServerInfo


  @Path("/get")
  @GET
  @UnitOfWork
  @ApiOperation(value = "Get server infos", notes = "Get server infos", response = ServerInfo.class)
  public Response get() {
    ServerInfo infos = new ServerInfo();
    infos.setAnnouncement(config.getApplicationSettings().getAnnouncement());
    infos.setVersion(config.getVersion());
    infos.setGitCommit(config.getGitCommit());
    infos.setAllowRegistrations(config.getApplicationSettings().isAllowRegistrations());
    infos.setGoogleAnalyticsCode(config.getApplicationSettings().getGoogleAnalyticsTrackingCode());
    infos.setSmtpEnabled(StringUtils.isNotBlank(config.getApplicationSettings().getSmtpHost()));
    return Response.ok(infos).build();
  }
View Full Code Here

TOP

Related Classes of com.commafeed.frontend.model.ServerInfo

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.