Package com.hubspot.singularity.resources

Source Code of com.hubspot.singularity.resources.IndexResource

package com.hubspot.singularity.resources;

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;

import com.google.inject.Inject;
import com.hubspot.singularity.config.SingularityConfiguration;
import com.hubspot.singularity.views.IndexView;

@Path("/{wildcard:.*}")
@Produces(MediaType.TEXT_HTML)
public class IndexResource {
  private final SingularityConfiguration configuration;

  @Inject
  public IndexResource(SingularityConfiguration configuration) {
    this.configuration = configuration;
  }

  @GET
  public IndexView getIndex() {
    return new IndexView(configuration);
  }
}
TOP

Related Classes of com.hubspot.singularity.resources.IndexResource

TOP
Copyright © 2018 www.massapi.com. 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.