[webbeans-commits] Webbeans SVN: r1775 - ri/trunk/webbeans-ri-spi/src/main/java/org/jboss/webbeans/manager/api.
webbeans-commits at lists.jboss.org
webbeans-commits at lists.jboss.org
Thu Mar 5 17:26:16 EST 2009
Author: pete.muir at jboss.org
Date: 2009-03-05 17:26:15 -0500 (Thu, 05 Mar 2009)
New Revision: 1775
Modified:
ri/trunk/webbeans-ri-spi/src/main/java/org/jboss/webbeans/manager/api/WebBeansManager.java
Log:
javadoc
Modified: ri/trunk/webbeans-ri-spi/src/main/java/org/jboss/webbeans/manager/api/WebBeansManager.java
===================================================================
--- ri/trunk/webbeans-ri-spi/src/main/java/org/jboss/webbeans/manager/api/WebBeansManager.java 2009-03-05 22:20:30 UTC (rev 1774)
+++ ri/trunk/webbeans-ri-spi/src/main/java/org/jboss/webbeans/manager/api/WebBeansManager.java 2009-03-05 22:26:15 UTC (rev 1775)
@@ -1,3 +1,20 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * 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 org.jboss.webbeans.manager.api;
import javax.inject.manager.Manager;
@@ -3,7 +20,20 @@
import javax.servlet.Servlet;
+/**
+ * Functionality provided by the Web Beans Manager over and above the JSR-299
+ * Manager.
+ *
+ * @author Pete Muir
+ *
+ */
public interface WebBeansManager extends Manager
{
+ /**
+ * Perform JSR-299 dependency injection on a servlet
+ *
+ * @param servlet
+ * the servlet instance to inject
+ */
public void injectIntoServlet(Servlet servlet);
More information about the weld-commits
mailing list