Java tutorial
/* * @Copyright 2016 Sylvain Vendeville. * This file is part of Budget Managment. * Budget Managment is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Budget Managment is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with MesComptes. If not, see <http://www.gnu.org/licenses/>. */ package com.snv.calendar; import com.snv.berkeleydb.CatalogDataBase; import com.snv.berkeleydb.DataBaseFactory; import com.snv.berkeleydb.DataBaseNamesEnum; import com.snv.common.CrudService; import org.springframework.stereotype.Service; import java.util.List; /** * Created by sylvain on 09/01/17. */ @Service public class CalendarCrudService extends DataBaseFactory<Calendar> implements CrudService<Calendar> { private static final DataBaseNamesEnum CALENDARCRUDSERVICENAME = DataBaseNamesEnum.CALENDARS; private static boolean isCalendarCrudServiceImplemented = Boolean.FALSE; public CalendarCrudService() { if (!Boolean.FALSE.equals(isCalendarCrudServiceImplemented)) { throw new IllegalStateException( "L'instance calendarCrudService ne peut tre implment plus d'une fois."); } this.open(); isCalendarCrudServiceImplemented = Boolean.TRUE; } /** * {@inheritDoc} */ @Override public boolean isOpen() { return super.isOpen(); } /** * {@inheritDoc} */ @Override public void open() { super.open(CALENDARCRUDSERVICENAME); } /** * {@inheritDoc} */ @Override public void close() { super.close(); } /** * {@inheritDoc} */ @Override public Calendar create(Calendar entity) { final Long primaryKey = CatalogDataBase.getInstance().getNextSequence(CALENDARCRUDSERVICENAME.name()); entity.setId(primaryKey); if (super.insertEntity(primaryKey, entity)) { return entity; } return null; } /** * {@inheritDoc} */ @Override public Calendar get(long entityKey) { return super.get(entityKey); } /** * {@inheritDoc} */ @Override public List<Calendar> getAll() { return super.getAll(); } /** * {@inheritDoc} */ @Override public Calendar update(Calendar entity) { if (super.updateEntity(entity.getId(), entity)) { return entity; } return null; } /** * {@inheritDoc} */ @Override public boolean delete(long entityKey) { return super.deleteEntity(entityKey); } /** * {@inheritDoc} */ @Override public boolean delete(Calendar entity) { return this.delete(entity.getId()); } }