com.banda.truckmanagementmodel.services.crud.Impl.GeneralEmployeeCrudServiceImpl.java Source code

Java tutorial

Introduction

Here is the source code for com.banda.truckmanagementmodel.services.crud.Impl.GeneralEmployeeCrudServiceImpl.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.banda.truckmanagementmodel.services.crud.Impl;

import com.banda.truckmanagementmodel.model.employees.GeneralEmployee;
import com.banda.truckmanagementmodel.services.crud.GeneralEmployeeCrudService;
import java.util.List;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;

/**
 *
 * @author itsbryan
 */
public class GeneralEmployeeCrudServiceImpl implements GeneralEmployeeCrudService {

    @Override
    @Transactional(propagation = Propagation.SUPPORTS)
    public GeneralEmployee find(String id) {
        return null;
    }

    @Override
    @Transactional(propagation = Propagation.MANDATORY)
    public GeneralEmployee persist(GeneralEmployee entity) {
        return null;
    }

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

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

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

}