/*
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
*/
|
package com.megatim.fdxconvert.service;
|
|
import com.megatimfx.common.service.GenericCrudService;
|
import com.megatim.fdxconvert.pojo.DecryptageAES;
|
import java.util.List;
|
|
/**
|
*
|
* @author STEPHANIE
|
*/
|
public class DecryptageAESService implements GenericCrudService<DecryptageAES>{
|
|
private static DecryptageAESService decryptageAESService;
|
|
private DecryptageAESService() {
|
|
}
|
|
public static synchronized DecryptageAESService getInstance() {
|
if (decryptageAESService == null) {
|
decryptageAESService = new DecryptageAESService();
|
}
|
return decryptageAESService;
|
}
|
|
@Override
|
public DecryptageAES add(DecryptageAES t) throws Exception {
|
throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody
|
}
|
|
@Override
|
public DecryptageAES edit(DecryptageAES t) throws Exception {
|
throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody
|
}
|
|
@Override
|
public List<DecryptageAES> getAll() throws Exception {
|
throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody
|
}
|
|
@Override
|
public void delete(DecryptageAES t) throws Exception {
|
throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody
|
}
|
|
}
|