Package org.springframework.osgi.web.deployer

Examples of org.springframework.osgi.web.deployer.WarDeploymentContext


    wac = null;
    bundle = null;
  }

  public void testGetDeploymentContext() {
    WarDeploymentContext warCtx = deployment.getDeploymentContext();
    assertNotNull(warCtx);
    assertSame(bundle, warCtx.getBundle());
    assertEquals(contextPath, warCtx.getContextPath());
    assertNotNull(warCtx.getServletContext());
  }
View Full Code Here

TOP

Related Classes of org.springframework.osgi.web.deployer.WarDeploymentContext

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.