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

org.nutz.cloud.config.spi.ConfigureEventHandler Maven / Gradle / Ivy

There is a newer version: 2.5.1.v20220215
Show newest version
package org.nutz.cloud.config.spi;

import java.util.EventListener;
import java.util.List;

public interface ConfigureEventHandler extends EventListener {

    void trigger(List events);
    
    class KeyEvent {
        public String name;
        public String value;
        public String action;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy