com.herion.register.RegisterEvent.java Source code

Java tutorial

Introduction

Here is the source code for com.herion.register.RegisterEvent.java

Source

/**
 * Copyright (c) 2005-2012 https://github.com/zhangkaitao
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 */
package com.herion.register;

import org.springframework.context.ApplicationEvent;

/**
 * <p>User: herion
 * <p>Date: 13-7-8 ?9:36
 * <p>Version: 1.0
 */
public class RegisterEvent extends ApplicationEvent {

    public RegisterEvent(User user) {
        super(user);
    }

}