Package com.alibaba.cooma.ext9

Examples of com.alibaba.cooma.ext9.ManualAdaptiveClassExt


* @author Jerry Lee(oldratlee AT gmail DOT com)
*/
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

Related Classes of com.alibaba.cooma.ext9.ManualAdaptiveClassExt

Copyright © 2018 www.massapicom. 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.