/* * JBoss, Home of Professional Open Source * Copyright 2013, Red Hat, Inc. and/or its affiliates, 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.switchyard.quickstarts.rest.binding; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentMap; import org.apache.log4j.Logger; import org.switchyard.component.bean.Service; /** * A WarehouseService implementation. * * @author Magesh Kumar B <mageshbk@jboss.com> (C) 2012 Red Hat Inc. */ @Service(WarehouseService.class) public class WarehouseServiceImpl implements WarehouseService { private static final Logger LOGGER = Logger.getLogger(WarehouseService.class); private static final String SUCCESS = "SUCCESS"; private ConcurrentMap<Integer, Item> items = new ConcurrentHashMap<Integer, Item>(); public Item getItem(Integer itemId) throws Exception { System.out.println("++++++ getItem " + itemId); Item item = this.items.get(itemId); if (item == null) { throw new ItemNotFoundException("Item " + itemId + " not found!"); } return item; } public String addItem(Item item) throws Exception { if (this.items.get(item.getItemId()) == null) { this.items.put(item.getItemId(), item); LOGGER.info("Added item " + item.getItemId() + " with name " + item.getName()); } return SUCCESS; } public String updateItem(Item item) throws Exception { Item item2 = this.items.get(item.getItemId()); item2.setName(item.getName()); LOGGER.info("Updated item " + item.getItemId() + " with name " + item.getName()); return SUCCESS; } public String removeItem(Integer itemId) throws Exception { if (getItem(itemId) == null) { throw new ItemNotFoundException("Item " + itemId + " not found!"); } this.items.remove(itemId); LOGGER.info("Removed item " + itemId); return SUCCESS; } public Integer getItemCount() { System.out.println("++++++ getItemCount "); return this.items.size(); } }