blob: e658c421c6342f54cc67d2f28cb11963a604abe1 [file] [log] [blame]
/**
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.airavata.k8s.api.server.service;
import org.apache.airavata.k8s.api.server.model.application.ApplicationModule;
import org.apache.airavata.k8s.api.server.repository.ApplicationModuleRepository;
import org.apache.airavata.k8s.api.resources.application.ApplicationModuleResource;
import org.apache.airavata.k8s.api.server.service.util.ToResourceUtil;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.ArrayList;
import java.util.List;
import java.util.Optional;
/**
* TODO: Class level comments please
*
* @author dimuthu
* @since 1.0.0-SNAPSHOT
*/
@Service
public class ApplicationModuleService {
private ApplicationModuleRepository applicationModuleRepository;
@Autowired
public ApplicationModuleService(ApplicationModuleRepository applicationModuleRepository) {
this.applicationModuleRepository = applicationModuleRepository;
}
public long create(ApplicationModuleResource resource) {
ApplicationModule module = new ApplicationModule();
module.setName(resource.getName());
module.setVersion(resource.getVersion());
module.setDescription(resource.getDescription());
ApplicationModule saved = this.applicationModuleRepository.save(module);
return saved.getId();
}
public Optional<ApplicationModuleResource> findById(long id) {
return ToResourceUtil.toResource(applicationModuleRepository.findById(id).get());
}
public List<ApplicationModuleResource> getAll() {
List<ApplicationModuleResource> computeList = new ArrayList<>();
Optional.ofNullable(applicationModuleRepository.findAll())
.ifPresent(computes ->
computes.forEach(compute -> computeList.add(ToResourceUtil.toResource(compute).get())));
return computeList;
}
}