All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.smilego.tenant.event.TenantMigration Maven / Gradle / Ivy

Go to download

A application used as an example on how to set up pushing its components to the Central Repository.

The newest version!
package io.smilego.tenant.event;

import io.smilego.tenant.model.Tenant;
import org.springframework.context.ApplicationEvent;

public class TenantMigration extends ApplicationEvent {

    private static final long serialVersionUID = 111L;

    public TenantMigration(Tenant tenant) {
        super(tenant);
    }

    @Override
    public Tenant getSource() {
        return (Tenant) super.getSource();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy