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

com.ssrs.platform.point.AfterBranchAddPoint Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package com.ssrs.platform.point;

import com.ssrs.framework.extend.ExtendException;
import com.ssrs.framework.extend.IExtendAction;

/**
 * 添加机构后的扩展点
 */
public abstract class AfterBranchAddPoint implements IExtendAction {
    public static final String ID = "com.ssrs.platform.point.AfterBranchAddPoint";

    @Override
    public Object execute(Object[] args) throws ExtendException {
        execute();
        return null;
    }

    public abstract void execute();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy