Package com.alibaba.cooma.ext9

Examples of com.alibaba.cooma.ext9.ManualAdaptiveClassExt.echo()


*/
public class ManualAdaptive implements ManualAdaptiveClassExt {
    public String echo(Map<String, String> config, String s) {
        ExtensionLoader<ManualAdaptiveClassExt> extensionLoader = ExtensionLoader.getExtensionLoader(ManualAdaptiveClassExt.class);
        ManualAdaptiveClassExt extension = extensionLoader.getExtension(config.get("key"));
        return extension.echo(config, s) + ManualAdaptive.class.getName();
    }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.