92 lines
2.4 KiB
Java
92 lines
2.4 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.TindakLanjutGizi;
|
|
|
|
import com.jasamedika.medifirst2000.vo.TindakLanjutGiziVO;
|
|
|
|
@Component
|
|
public class TindakLanjutGiziConverter implements BaseVoConverter<TindakLanjutGiziVO, TindakLanjutGizi> {
|
|
|
|
|
|
@Override
|
|
public TindakLanjutGizi transferVOToModel(TindakLanjutGiziVO vo, TindakLanjutGizi model) {
|
|
if (null == model)
|
|
model = new TindakLanjutGizi();
|
|
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, TindakLanjutGizi.class);
|
|
} catch (Exception e) {
|
|
e.printStackTrace();
|
|
}
|
|
|
|
return model;
|
|
}
|
|
|
|
@Override
|
|
public List<TindakLanjutGiziVO> transferListOfModelToListOfVO(List<TindakLanjutGizi> models, List<TindakLanjutGiziVO> vos) {
|
|
|
|
if (null == vos)
|
|
vos = new ArrayList<TindakLanjutGiziVO>();
|
|
|
|
if (null == models)
|
|
return vos;
|
|
|
|
for (TindakLanjutGizi tindakLanjutGizi : models) {
|
|
TindakLanjutGiziVO vo = new TindakLanjutGiziVO();
|
|
vo=transferModelToVO(tindakLanjutGizi, vo);
|
|
vos.add(vo);
|
|
}
|
|
|
|
return vos;
|
|
}
|
|
|
|
@Override
|
|
public TindakLanjutGiziVO transferModelToVO(TindakLanjutGizi model, TindakLanjutGiziVO vo) {
|
|
if (null == vo)
|
|
vo = new TindakLanjutGiziVO();
|
|
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, TindakLanjutGiziVO.class);
|
|
} catch (Exception e) {
|
|
e.printStackTrace();
|
|
}
|
|
|
|
return vo;
|
|
}
|
|
|
|
public TindakLanjutGiziVO transferModelToVOCustom(TindakLanjutGizi model, TindakLanjutGiziVO vo,String[] fieldsToInclude) {
|
|
if (null == vo)
|
|
|
|
vo = new TindakLanjutGiziVO();
|
|
|
|
try {
|
|
Map<String, Object> serialized = model.serialize(fieldsToInclude,model.getClass().getSimpleName());
|
|
Gson gson = new Gson();
|
|
String json = gson.toJson(serialized);
|
|
vo = gson.fromJson(json, TindakLanjutGiziVO.class);
|
|
} catch (Exception e) {
|
|
e.printStackTrace();
|
|
}
|
|
return vo;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|