77 lines
2.1 KiB
Java
77 lines
2.1 KiB
Java
package com.jasamedika.medifirst2000.converter;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
import com.google.gson.Gson;
|
|
import com.jasamedika.medifirst2000.converter.base.BaseVoConverter;
|
|
import com.jasamedika.medifirst2000.entities.StatusLukaLesiPendarahan;
|
|
import com.jasamedika.medifirst2000.vo.StatusLukaLesiPendarahanVO;
|
|
|
|
@Component
|
|
public class StatusLukaLesiPendarahanConverter implements BaseVoConverter<StatusLukaLesiPendarahanVO, StatusLukaLesiPendarahan> {
|
|
|
|
|
|
@Override
|
|
public StatusLukaLesiPendarahan transferVOToModel(StatusLukaLesiPendarahanVO vo, StatusLukaLesiPendarahan model) {
|
|
if (null == model)
|
|
model = new StatusLukaLesiPendarahan();
|
|
|
|
try {
|
|
String[] fieldsToInclude = null;
|
|
Map<String, Object> serialized = vo.serialize(fieldsToInclude,vo.getClass().getName());
|
|
Gson gson = new Gson();
|
|
String json = gson.toJson(serialized);
|
|
model = gson.fromJson(json, StatusLukaLesiPendarahan.class);
|
|
} catch (Exception e) {
|
|
e.printStackTrace();
|
|
}
|
|
|
|
return model;
|
|
}
|
|
|
|
@Override
|
|
public List<StatusLukaLesiPendarahanVO> transferListOfModelToListOfVO(List<StatusLukaLesiPendarahan> models, List<StatusLukaLesiPendarahanVO> vos) {
|
|
|
|
if (null == vos)
|
|
vos = new ArrayList<StatusLukaLesiPendarahanVO>();
|
|
|
|
if (null == models)
|
|
return vos;
|
|
|
|
for (StatusLukaLesiPendarahan statusLukaLesiPendarahan : models) {
|
|
StatusLukaLesiPendarahanVO vo = new StatusLukaLesiPendarahanVO();
|
|
vo=transferModelToVO(statusLukaLesiPendarahan, vo);
|
|
vos.add(vo);
|
|
}
|
|
|
|
return vos;
|
|
}
|
|
|
|
@Override
|
|
public StatusLukaLesiPendarahanVO transferModelToVO(StatusLukaLesiPendarahan model, StatusLukaLesiPendarahanVO vo) {
|
|
if (null == vo)
|
|
vo = new StatusLukaLesiPendarahanVO();
|
|
try {
|
|
String[] fieldsToInclude = null;
|
|
Map<String, Object> serialized = model.serialize(fieldsToInclude,model.getClass().getSimpleName());
|
|
Gson gson = new Gson();
|
|
|
|
String json = gson.toJson(serialized);
|
|
vo = gson.fromJson(json, StatusLukaLesiPendarahanVO.class);
|
|
} catch (Exception e) {
|
|
e.printStackTrace();
|
|
}
|
|
|
|
return vo;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|