Class DictDataApiImpl
- java.lang.Object
-
- org.openea.eap.module.system.api.dict.DictDataApiImpl
-
- All Implemented Interfaces:
DictDataApi
@RestController @Validated public class DictDataApiImpl extends Object implements DictDataApi
-
-
Field Summary
-
Fields inherited from interface org.openea.eap.module.system.api.dict.DictDataApi
PREFIX
-
-
Constructor Summary
Constructors Constructor Description DictDataApiImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.openea.eap.framework.common.pojo.CommonResult<DictDataRespDTO>getDictData(String dictType, String value)org.openea.eap.framework.common.pojo.CommonResult<List<DictDataRespDTO>>getDictDataList(String dictType)org.openea.eap.framework.common.pojo.CommonResult<DictDataRespDTO>parseDictData(String dictType, String label)org.openea.eap.framework.common.pojo.CommonResult<Boolean>validateDictDataList(String dictType, Collection<String> values)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.openea.eap.module.system.api.dict.DictDataApi
getDictDataLabel, getDictDataLabelList
-
-
-
-
Method Detail
-
validateDictDataList
public org.openea.eap.framework.common.pojo.CommonResult<Boolean> validateDictDataList(String dictType, Collection<String> values)
- Specified by:
validateDictDataListin interfaceDictDataApi
-
getDictData
public org.openea.eap.framework.common.pojo.CommonResult<DictDataRespDTO> getDictData(String dictType, String value)
- Specified by:
getDictDatain interfaceDictDataApi
-
parseDictData
public org.openea.eap.framework.common.pojo.CommonResult<DictDataRespDTO> parseDictData(String dictType, String label)
- Specified by:
parseDictDatain interfaceDictDataApi
-
getDictDataList
public org.openea.eap.framework.common.pojo.CommonResult<List<DictDataRespDTO>> getDictDataList(String dictType)
- Specified by:
getDictDataListin interfaceDictDataApi
-
-