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

com.brihaspathee.zeus.web.resource.impl.WelcomeAPIImpl Maven / Gradle / Ivy

package com.brihaspathee.zeus.web.resource.impl;

import com.brihaspathee.zeus.web.model.WelcomeDto;
import com.brihaspathee.zeus.web.resource.interfaces.WelcomeAPI;
import com.brihaspathee.zeus.web.response.ZeusApiResponse;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RestController;

import java.time.LocalDateTime;

/**
 * Created in Intellij IDEA
 * User: Balaji Varadharajan
 * Date: 01, March 2024
 * Time: 3:53 PM
 * Project: Zeus
 * Package Name: com.brihaspathee.zeus.web.resource.impl
 * To change this template use File | Settings | File and Code Template
 */
@Slf4j
@RestController
@RequiredArgsConstructor
public class WelcomeAPIImpl implements WelcomeAPI {

    /**
     * Returns a simple welcome message for the service
     * @return
     */
    @Override
    public ResponseEntity> getWelcomeMessage() {
        return ResponseEntity.ok(ZeusApiResponse.builder()
                .developerMessage("Connection is good")
                .message("Hello, Welcome to Zeus Validation Service")
                .statusCode(200)
                .status(HttpStatus.OK)
                .timestamp(LocalDateTime.now())
                .response(WelcomeDto.builder()
                        .welcomeMessage("Hello, I am glad that you are here!!! I am sure you will have a great time")
                        .build())
                .build());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy