Package com.kylin.jbosscache.custom.client

Source Code of com.kylin.jbosscache.custom.client.JBossCacheServiceClientTest

package com.kylin.jbosscache.custom.client;

import com.kylin.jbosscache.custom.service.JBossCacheService;


public class JBossCacheServiceClientTest extends ClientBase {

  public void test() throws Exception {

    JBossCacheService service = (JBossCacheService) getContext("127.0.0.1").lookup(STR_JNDI);
    service.test();
  }
 
  public static void main(String[] args) throws Exception {
    new JBossCacheServiceClientTest().test();
  }

}
TOP

Related Classes of com.kylin.jbosscache.custom.client.JBossCacheServiceClientTest

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.