com.home.ln_spring.ch5.event.MessageEvent.java Source code

Java tutorial

Introduction

Here is the source code for com.home.ln_spring.ch5.event.MessageEvent.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.home.ln_spring.ch5.event;

import org.springframework.context.ApplicationEvent;

/**
 *
 * @author vitaliy
 */
public class MessageEvent extends ApplicationEvent {

    private String msg;

    public MessageEvent(Object source, String msg) {
        super(source);
        this.msg = msg;
    }

    public String getMessage() {
        return msg;
    }
}