Examples of AddExt4


Examples of com.alibaba.dubbo.common.extensionloader.ext8_add.AddExt4

* @author ding.lid
*/
@Adaptive
public class AddExt4_ManualAdaptive implements AddExt4 {
    public String echo(URL url, String s) {
        AddExt4 addExt1 = ExtensionLoader.getExtensionLoader(AddExt4.class).getExtension(url.getParameter("add.ext4"));
        return addExt1.echo(url, s);
    }
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.