blob: 8ef4c3215ce2855c2e433942a01db4005fd5529d [file] [log] [blame]
package org.eclipse.openk.contactbasedata.service;
import lombok.extern.log4j.Log4j2;
import org.eclipse.openk.contactbasedata.exceptions.NotFoundException;
import org.eclipse.openk.contactbasedata.model.TblContact;
import org.eclipse.openk.contactbasedata.repository.ContactRepository;
import org.eclipse.openk.contactbasedata.repository.PersonTypeRepository;
import org.eclipse.openk.contactbasedata.repository.SalutationRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.UUID;
@Log4j2
@Service
public class BaseContactService {
@Autowired
private ContactRepository contactRepository;
@Autowired
private SalutationRepository salutationRepository;
@Autowired
private PersonTypeRepository personTypeRepository;
public TblContact getContact(UUID contactUuid){
return contactRepository
.findByUuid(contactUuid)
.orElseThrow(() -> new NotFoundException("contact.not.found"));
}
}