You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jb...@apache.org on 2008/06/07 05:04:36 UTC

svn commit: r664252 - in /geronimo/samples/branches/2.1/samples: bank/bank-war/src/main/webapp/ customer-service/customer-service-war/src/main/webapp/customers/ myphonebook/myphonebook-war/src/main/webapp/ mytime/mytime-war/src/main/webapp/

Author: jbohn
Date: Fri Jun  6 20:04:35 2008
New Revision: 664252

URL: http://svn.apache.org/viewvc?rev=664252&view=rev
Log:
include a number imports that were somehow lost in reformat in rev. 664175

Modified:
    geronimo/samples/branches/2.1/samples/bank/bank-war/src/main/webapp/customer_info.jsp
    geronimo/samples/branches/2.1/samples/bank/bank-war/src/main/webapp/exchange_rates.jsp
    geronimo/samples/branches/2.1/samples/customer-service/customer-service-war/src/main/webapp/customers/index.jsp
    geronimo/samples/branches/2.1/samples/myphonebook/myphonebook-war/src/main/webapp/index.jsp
    geronimo/samples/branches/2.1/samples/mytime/mytime-war/src/main/webapp/index.jsp

Modified: geronimo/samples/branches/2.1/samples/bank/bank-war/src/main/webapp/customer_info.jsp
URL: http://svn.apache.org/viewvc/geronimo/samples/branches/2.1/samples/bank/bank-war/src/main/webapp/customer_info.jsp?rev=664252&r1=664251&r2=664252&view=diff
==============================================================================
--- geronimo/samples/branches/2.1/samples/bank/bank-war/src/main/webapp/customer_info.jsp (original)
+++ geronimo/samples/branches/2.1/samples/bank/bank-war/src/main/webapp/customer_info.jsp Fri Jun  6 20:04:35 2008
@@ -1,4 +1,5 @@
 <%@ page import="java.util.List" %>
+<%@ page import="org.apache.geronimo.samples.bank.ejb.Account" %>
 <!--
 Licensed to the Apache Software Foundation (ASF) under one
 or more contributor license agreements. See the NOTICE file

Modified: geronimo/samples/branches/2.1/samples/bank/bank-war/src/main/webapp/exchange_rates.jsp
URL: http://svn.apache.org/viewvc/geronimo/samples/branches/2.1/samples/bank/bank-war/src/main/webapp/exchange_rates.jsp?rev=664252&r1=664251&r2=664252&view=diff
==============================================================================
--- geronimo/samples/branches/2.1/samples/bank/bank-war/src/main/webapp/exchange_rates.jsp (original)
+++ geronimo/samples/branches/2.1/samples/bank/bank-war/src/main/webapp/exchange_rates.jsp Fri Jun  6 20:04:35 2008
@@ -1,4 +1,5 @@
 <%@ page import="java.util.List" %>
+<%@ page import="org.apache.geronimo.samples.bank.ejb.ExchangeRate" %>
 <!--
 Licensed to the Apache Software Foundation (ASF) under one
 or more contributor license agreements. See the NOTICE file

Modified: geronimo/samples/branches/2.1/samples/customer-service/customer-service-war/src/main/webapp/customers/index.jsp
URL: http://svn.apache.org/viewvc/geronimo/samples/branches/2.1/samples/customer-service/customer-service-war/src/main/webapp/customers/index.jsp?rev=664252&r1=664251&r2=664252&view=diff
==============================================================================
--- geronimo/samples/branches/2.1/samples/customer-service/customer-service-war/src/main/webapp/customers/index.jsp (original)
+++ geronimo/samples/branches/2.1/samples/customer-service/customer-service-war/src/main/webapp/customers/index.jsp Fri Jun  6 20:04:35 2008
@@ -21,6 +21,7 @@
 %>
 
 <%@ page import="java.util.List" %>
+<%@ page import="com.service.customer.ejb.Customer" %>
 
 <jsp:useBean id="serviceBean" scope="session" class="com.service.customer.web.CustomerServiceJavaBean"/>
 <jsp:setProperty name="serviceBean" property="*"/>

Modified: geronimo/samples/branches/2.1/samples/myphonebook/myphonebook-war/src/main/webapp/index.jsp
URL: http://svn.apache.org/viewvc/geronimo/samples/branches/2.1/samples/myphonebook/myphonebook-war/src/main/webapp/index.jsp?rev=664252&r1=664251&r2=664252&view=diff
==============================================================================
--- geronimo/samples/branches/2.1/samples/myphonebook/myphonebook-war/src/main/webapp/index.jsp (original)
+++ geronimo/samples/branches/2.1/samples/myphonebook/myphonebook-war/src/main/webapp/index.jsp Fri Jun  6 20:04:35 2008
@@ -17,6 +17,8 @@
 under the License.
 -->
 <%@ page contentType="text/html" import="javax.naming.Context, javax.naming.InitialContext " %>
+<%@ page import="org.apache.geronimo.samples.myphonebookpak.MyPhonebookLocal" %>
+<%@ page import="org.apache.geronimo.samples.myphonebookpak.PhoneBook" %>
 
 <%
     String searchName = "";

Modified: geronimo/samples/branches/2.1/samples/mytime/mytime-war/src/main/webapp/index.jsp
URL: http://svn.apache.org/viewvc/geronimo/samples/branches/2.1/samples/mytime/mytime-war/src/main/webapp/index.jsp?rev=664252&r1=664251&r2=664252&view=diff
==============================================================================
--- geronimo/samples/branches/2.1/samples/mytime/mytime-war/src/main/webapp/index.jsp (original)
+++ geronimo/samples/branches/2.1/samples/mytime/mytime-war/src/main/webapp/index.jsp Fri Jun  6 20:04:35 2008
@@ -1,4 +1,6 @@
 <%@ page contentType="text/html" import="javax.naming.Context, javax.naming.InitialContext " %>
+<%@ page contentType="text/html" import="javax.naming.Context, javax.naming.InitialContext " %>
+<%@ page import="org.apache.geronimo.samples.mytimepak.MyTimeLocal" %>
 <!--
 Licensed to the Apache Software Foundation (ASF) under one or more
 contributor license agreements. See the NOTICE file distributed with