blob: 8def19fa077b638c55ec90611901fdffa69176c0 [file] [log] [blame]
/*
*******************************************************************************
* Copyright (c) 2019 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************
*/
package org.eclipse.openk.contactbasedata.service;
import org.eclipse.openk.contactbasedata.constants.Constants;
import org.eclipse.openk.contactbasedata.mapper.VersionMapper;
import org.eclipse.openk.contactbasedata.model.Version;
import org.eclipse.openk.contactbasedata.repository.VersionRepository;
import org.eclipse.openk.contactbasedata.viewmodel.VersionDto;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.Optional;
@Service
public class VersionService {
@Autowired
VersionRepository versionRepository;
@Autowired
VersionMapper versionMapper;
public VersionDto getVersion() {
VersionDto retVersion;
Optional<Version> dbVersion = versionRepository.findById(1L);
if( dbVersion.isPresent() ) {
retVersion = versionMapper.toVersionDto(dbVersion.get());
}
else {
retVersion = new VersionDto();
retVersion.setDbVersion(Constants.DB_VERSION_NOT_PRESENT);
}
retVersion.setBackendVersion("00");
return retVersion;
}
}