1 /*2 * JBoss, the OpenSource J2EE webOS3 *4 * Distributable under LGPL license.5 * See terms of license at gnu.org.6 */7 package org.jboss.tutorial.injection.bean;8 9 import javax.ejb.Stateless ;10 11 @Stateless 12 public class CalculatorBean implements Calculator13 {14 public int add(int x, int y)15 {16 return x + y;17 }18 19 public int subtract(int x, int y)20 {21 return x - y;22 }23 }24