com.ling.spring.event.ContentEvent.java Source code

Java tutorial

Introduction

Here is the source code for com.ling.spring.event.ContentEvent.java

Source

/*
 * Copyright 2005-2020 Daxia Team All rights reserved.
 * Support: zhangzhen
 * License: Daxia Team license
 */
package com.ling.spring.event;

import org.springframework.context.ApplicationEvent;

public class ContentEvent extends ApplicationEvent {

    public ContentEvent(String source) {
        super(source);
    }

}