All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.xti.spring.cloud.heroku.discovery.metadata.MetadataController Maven / Gradle / Ivy

The newest version!
package com.xti.spring.cloud.heroku.discovery.metadata;

import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;

import java.util.Map;

@RestController
@RequestMapping(value = "/spring-cloud-heroku-metadata", produces = MediaType.APPLICATION_JSON_VALUE)
public class MetadataController {

    private LocallyMutableMetadataProvider metadataProvider = LocallyMutableMetadataProvider.getInstance();

    @GetMapping()
    public @ResponseBody Map getMetadata() {
        return metadataProvider.getMetadata();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy