com.tracy.immutable.service.crud.Impl.PrincipleCrudServiceImpl.java Source code

Java tutorial

Introduction

Here is the source code for com.tracy.immutable.service.crud.Impl.PrincipleCrudServiceImpl.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.tracy.immutable.service.crud.Impl;

import com.tracy.immutable.model.members.Principle;
import com.tracy.immutable.service.crud.PrincipleCrudService;
import java.util.List;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;

/**
 *
 * @author student
 */
public class PrincipleCrudServiceImpl implements PrincipleCrudService {

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

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

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

    @Override
    @Transactional(propagation = Propagation.REQUIRED)
    public Principle remove(Principle entity) {

        return null;

    }

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

}