blob: 0158d069d7a32da6886f8aa1ef245bb9ff770b7b [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.fineract.portfolio.shares.service;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Set;
import org.apache.fineract.portfolio.products.data.ProductData;
import org.apache.fineract.portfolio.products.service.ProductReadPlatformService;
import org.apache.fineract.portfolio.shares.domain.ShareProduct;
import org.apache.fineract.portfolio.shares.domain.ShareProductTempRepository;
import org.springframework.stereotype.Service;
@Service(value = "shareReadPlatformService")
public class ShareProductReadPlatformServiceImpl implements ProductReadPlatformService{
ShareProductTempRepository repo = ShareProductTempRepository.getInstance() ;
@Override
public Collection<ProductData> retrieveAllProducts() {
Collection<ShareProduct> entities = repo.findAll() ;
List<ProductData> toReturn = new ArrayList<>() ;
for(ShareProduct entity: entities) {
toReturn.add(entity.toData()) ;
}
return toReturn;
}
@Override
public ProductData retrieveOne(Long productId) {
ShareProduct product = repo.fineOne(productId) ;
return product.toData() ;
}
@Override
public ProductData retrieveTemplate() {
return null;
}
@Override
public Set<String> getResponseDataParams() {
return null;
}
}