Class CodeValueReadPlatformServiceImpl
java.lang.Object
org.apache.fineract.infrastructure.codes.service.CodeValueReadPlatformServiceImpl
- All Implemented Interfaces:
org.apache.fineract.infrastructure.codes.service.CodeValueReadPlatformService
@Service
public class CodeValueReadPlatformServiceImpl
extends Object
implements org.apache.fineract.infrastructure.codes.service.CodeValueReadPlatformService
-
Constructor Summary
ConstructorsConstructorDescriptionCodeValueReadPlatformServiceImpl(org.apache.fineract.infrastructure.security.service.PlatformSecurityContext context, org.springframework.jdbc.core.JdbcTemplate jdbcTemplate) -
Method Summary
Modifier and TypeMethodDescriptionCollection<org.apache.fineract.infrastructure.codes.data.CodeValueData> retrieveAllCodeValues(Long codeId) org.apache.fineract.infrastructure.codes.data.CodeValueDataretrieveCodeValue(Long codeValueId) List<org.apache.fineract.infrastructure.codes.data.CodeValueData>
-
Constructor Details
-
CodeValueReadPlatformServiceImpl
@Autowired public CodeValueReadPlatformServiceImpl(org.apache.fineract.infrastructure.security.service.PlatformSecurityContext context, org.springframework.jdbc.core.JdbcTemplate jdbcTemplate)
-
-
Method Details
-
retrieveCodeValuesByCode
@Cacheable(value="code_values", key="T(org.apache.fineract.infrastructure.core.service.ThreadLocalContextUtil).getTenant().getTenantIdentifier().concat(#code+\'cv\')") public List<org.apache.fineract.infrastructure.codes.data.CodeValueData> retrieveCodeValuesByCode(String code) - Specified by:
retrieveCodeValuesByCodein interfaceorg.apache.fineract.infrastructure.codes.service.CodeValueReadPlatformService
-
retrieveAllCodeValues
@Cacheable(value="code_values", key="T(org.apache.fineract.infrastructure.core.service.ThreadLocalContextUtil).getTenant().getTenantIdentifier().concat(#codeId+\'cv\')") public Collection<org.apache.fineract.infrastructure.codes.data.CodeValueData> retrieveAllCodeValues(Long codeId) - Specified by:
retrieveAllCodeValuesin interfaceorg.apache.fineract.infrastructure.codes.service.CodeValueReadPlatformService
-
retrieveCodeValue
@Cacheable(value="code_values", key="T(org.apache.fineract.infrastructure.core.service.ThreadLocalContextUtil).getTenant().getTenantIdentifier().concat(#codeValueId+\'cv_by_id\')") public org.apache.fineract.infrastructure.codes.data.CodeValueData retrieveCodeValue(Long codeValueId) - Specified by:
retrieveCodeValuein interfaceorg.apache.fineract.infrastructure.codes.service.CodeValueReadPlatformService
-