com.immutabledomain.phonestore.services.crud.Impl.ITSpecialistCrudServiceImpl.java Source code

Java tutorial

Introduction

Here is the source code for com.immutabledomain.phonestore.services.crud.Impl.ITSpecialistCrudServiceImpl.java

Source

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

package com.immutabledomain.phonestore.services.crud.Impl;

import com.immutabledomain.phonestore.model.pkgEmployee.ITSpecialist;
import com.immutabledomain.phonestore.services.crud.ITSpecialistCrudService;
import java.util.List;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;

/**
 *
 * @author Tristan
 */
public class ITSpecialistCrudServiceImpl implements ITSpecialistCrudService {
    @Override
    @Transactional(propagation = Propagation.SUPPORTS)
    public ITSpecialist find(String s) {
        return null;
    }

    @Override
    @Transactional(propagation = Propagation.MANDATORY)
    public ITSpecialist persist(ITSpecialist entity) {

        return null;
    }

    @Override
    @Transactional(propagation = Propagation.REQUIRES_NEW)
    public ITSpecialist merge(ITSpecialist entity) {
        return null;
    }

    @Override
    @Transactional(propagation = Propagation.REQUIRED)
    public ITSpecialist remove(ITSpecialist entity) {
        return null;
    }

    @Override
    @Transactional(propagation = Propagation.NOT_SUPPORTED)
    public List<ITSpecialist> findAll() {
        return null;
    }
}