blob: 6c7c3577331ead8ab10b5c62270ab76afb287e3a [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){
//TODO: Fehlermeldung mit message!
return contactRepository
.findByUuid(contactUuid)
.orElseThrow(() -> new NotFoundException("Der Kontakt konnte nicht gefunden werden"));
}
}