com.api.services.ServiceImpl3.java Source code

Java tutorial

Introduction

Here is the source code for com.api.services.ServiceImpl3.java

Source

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package com.api.services;

import com.api.domain.Greeting;
import org.springframework.stereotype.Component;

/**
 *
 * @author mark
 */
@Component
public class ServiceImpl3 implements Service {

    private Greeting greeting;

    @Override
    public Greeting greet() {
        return greeting;
    }

    @Override
    public void setGreeting(Greeting greeting) {

        this.greeting = greeting;

    }

}