com.github.ffremont.microservices.springboot.manager.BeforeConvertMicroService.java Source code

Java tutorial

Introduction

Here is the source code for com.github.ffremont.microservices.springboot.manager.BeforeConvertMicroService.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.github.ffremont.microservices.springboot.manager;

import com.github.ffremont.microservices.springboot.manager.models.MicroService;
import java.util.Date;
import org.springframework.data.mongodb.core.mapping.event.AbstractMongoEventListener;
import org.springframework.stereotype.Component;

/**
 *
 * @author florent
 */
@Component
public class BeforeConvertMicroService extends AbstractMongoEventListener<MicroService> {

    @Override
    public void onBeforeConvert(MicroService source) {
        source.setVersion(source.generateVersion());
        source.setLastModified(new Date());

        super.onBeforeConvert(source);
    }

}