View Javadoc

1   /**
2    * Copyright 2005-2013 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.rice.ksb.server;
17  
18  import org.apache.log4j.Logger;
19  import org.eclipse.jetty.server.Server;
20  import org.eclipse.jetty.webapp.WebAppContext;
21  import org.kuali.rice.core.api.config.property.ConfigContext;
22  import org.kuali.rice.ksb.BaseTestServer;
23  
24  import java.net.URL;
25  
26  public class TestClient1 extends BaseTestServer {
27  	
28  	private static final Logger LOG = Logger.getLogger(TestClient1.class);
29  
30      private static final String WEB_ROOT = "org/kuali/rice/ksb/testclient1";
31  	private static final String CONTEXT = "/TestClient1";
32  	
33  	@Override
34  	protected Server createServer() {
35  		Server server = new Server(new Integer(ConfigContext.getCurrentContextConfig().getProperty("ksb.client1.port")));
36          URL webRoot = getClass().getClassLoader().getResource(WEB_ROOT);
37          String location = webRoot.getPath();
38  
39  		LOG.debug("#####################################");
40  		LOG.debug("#");
41  		LOG.debug("#  Starting Client1 using following web root " + location);
42  		LOG.debug("#");
43  		LOG.debug("#####################################");
44  
45  
46  		WebAppContext context = new WebAppContext(location, CONTEXT);
47  		server.setHandler(context);
48  		return server;
49  	}
50  }