blob: d70fdef0ad03c08c312db68151e9ea04d079bde7 [file] [log] [blame]
/*
* Copyright (c) 2017, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
/*
* ShoppingEJB.java
*
* Created on May 15, 2003, 5:16 PM
*/
package shopping;
import java.rmi.RemoteException;
import java.util.Iterator;
import java.util.Vector;
import jakarta.ejb.EJBException;
import jakarta.ejb.SessionBean;
import jakarta.ejb.SessionContext;
/**
*
* @author Harpreet Singh
*/
public class NegativeRPABean implements SessionBean {
private String shopper = "anonymous";
private String principal = "j2ee";
private int totalPrice = 0;
private int totalItems = 0;
private Vector items;
private Vector itemPrice;
private SessionContext sc = null;
/** Creates a new instance of ShoppingEJB */
public void ejbCreate(String shopperName) {
shopper = shopperName;
items = new Vector();
itemPrice = new Vector();
}
public void addItem(java.lang.String item, int price) throws EJBException,
RemoteException{
// this method should be uncallable.
throw new EJBException("Method should be uncallable ");
}
public void deleteItem(java.lang.String item) throws EJBException,
RemoteException{
// this method should be uncallable.
throw new EJBException("Method should be uncallable ");
}
public double getTotalCost() throws EJBException{
// this method should be uncallable.
throw new EJBException("Method should be uncallable ");
}
public String[] getItems() throws EJBException{
// this method should be uncallable.
throw new EJBException("Method should be uncallable ");
}
public void ejbActivate() {
System.out.println("In ShoppingCart ejbActivate");
}
public void ejbPassivate() {
System.out.println("In ShoppingCart ejbPassivate");
}
public void ejbRemove() {
System.out.println("In ShoppingCart ejbRemove");
}
public void setSessionContext(SessionContext sessionContext) {
sc = sessionContext;
}
}