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

com.github.andyshao.run.AfterStartedProcess Maven / Gradle / Ivy

The newest version!
package com.github.andyshao.run;

import java.util.List;

/**
 * 
 * Title:
* Descript:
* Copyright: Copryright(c) Dec 13, 2017
* Encoding:UNIX UTF-8 * @author andy.shao * */ public interface AfterStartedProcess { /** * Do the bean properties injection operation * @param context the bean context */ public void process(AfterStartedContext context); /** * Get the bean initialization sequence * @param context the bean context * @return the sequence of bean initialization */ public List sequence(AfterStartedContext context); /** * the default installment of the bean property injection * @return the default {@link AfterStartedProcess} object. */ public static AfterStartedProcess DefaultProcess() { return new DefaultAfterStaredProcess(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy