com.pharmacy.pharmacyweb.services.crud.Impl.PerscriptionCrudServiceImpl.java Source code

Java tutorial

Introduction

Here is the source code for com.pharmacy.pharmacyweb.services.crud.Impl.PerscriptionCrudServiceImpl.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.pharmacy.pharmacyweb.services.crud.Impl;

import com.pharmacy.pharmacyweb.domain.customers.Perscription;
import com.pharmacy.pharmacyweb.services.crud.PerscriptionCrudService;
import java.util.List;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;

/**
 *
 * @author luke
 */
public class PerscriptionCrudServiceImpl implements PerscriptionCrudService {

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

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

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

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

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

}