%--
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
--%>
OpenBooks: A sample JPA web application
<%!
/**
* Lookup keys for Session/Requeust data used throught pages.
*/
public static String KEY_USER = "user";
public static String KEY_SERVICE = "OpenBookService";
public static String KEY_CART = "cart";
public static String KEY_ACTION = "action";
public static String KEY_ISBN = "isbn";
public static String KEY_OID = "oid";
public static String ACTION_ADD = "add";
public static String ACTION_DELIVER = "deliver";
public static String ACTION_DETAILS = "details";
public static String PAGE_BOOKS = "query.jsp";
public static String PAGE_ORDERS = "orders.jsp";
public static String PAGE_CART = "cart.jsp";
public static String PAGE_HOME = "intro.jsp";
public static String PAGE_LOGIN = "register.jsp";
public static String PAGE_SEARCH = "search.jsp";
public static String PAGE_CHECKOUT = "checkout.jsp";
public static String FORM_TITLE = "title";
public static String FORM_AUTHOR = "author";
public static String FORM_PRICE_MAX = "maxPrice";
public static String FORM_PRICE_MIN = "minPrice";
public static String ROW_STYLE_EVEN = "even";
public static String ROW_STYLE_ODD = "odd";
%>