/gwtcx/gwtcx-samples/gwtcx-samples-extgwt/gwtcx-samples-extgwt-basic/src/main/java/com/gwtcx/sample/basic/server/guice/BasicGuiceServletContextListener.java
http://gwt-cx.googlecode.com/ · Java · 27 lines · 10 code · 4 blank · 13 comment · 0 complexity · 28d39e12247a078b53acc1a4453bc813 MD5 · raw file
- /**
- * (C) Copyright 2010, 2011 upTick Pty Ltd
- *
- * Licensed under the terms of the GNU General Public License version 3
- * as published by the Free Software Foundation. You may obtain a copy of the
- * License at: http://www.gnu.org/copyleft/gpl.html
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- * License for the specific language governing permissions and limitations
- * under the License.
- */
- package com.gwtcx.sample.basic.server.guice;
- import com.google.inject.Guice;
- import com.google.inject.Injector;
- import com.google.inject.servlet.GuiceServletContextListener;
- public class BasicGuiceServletContextListener extends GuiceServletContextListener {
- @Override
- protected Injector getInjector() {
- return Guice.createInjector(new BasicServerModule(), new BasicServletModule());
- }
- }