com.brihaspathee.zeus.web.resource.interfaces.WelcomeAPI Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of transaction-manager Show documentation
Show all versions of transaction-manager Show documentation
Zeus Enrollment Transaction Manager
package com.brihaspathee.zeus.web.resource.interfaces;
import com.brihaspathee.zeus.web.model.WelcomeDto;
import com.brihaspathee.zeus.web.response.ZeusApiResponse;
import org.springframework.http.ResponseEntity;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.RequestMapping;
/**
* Created in Intellij IDEA
* User: Balaji Varadharajan
* Date: 07, October 2022
* Time: 7:22 AM
* Project: Zeus
* Package Name: com.brihaspathee.zeus.web.resource.interfaces
* To change this template use File | Settings | File and Code Template
*/
@RequestMapping("/api/v1/zeus")
@Validated
public interface WelcomeAPI {
/**
* A welcome endpoint to check for connectivity
* @return
*/
ResponseEntity> getWelcomeMessage();
}