77 lines
1.9 KiB
Java
77 lines
1.9 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.PapGigiMulut;
|
|
import com.jasamedika.medifirst2000.vo.PapGigiMulutVO;
|
|
|
|
/**
|
|
* Converter class between PAPGigiMulut and PAPGigiMulutVO
|
|
*
|
|
* @author Askur
|
|
*/
|
|
@Component
|
|
public class PapGigiMulutConverter implements BaseVoConverter<PapGigiMulutVO, PapGigiMulut> {
|
|
|
|
|
|
public PapGigiMulut transferVOToModel(PapGigiMulutVO vo, PapGigiMulut model) {
|
|
if (null == model)
|
|
model = new PapGigiMulut();
|
|
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, PapGigiMulut.class);
|
|
} catch (Exception e) {
|
|
e.printStackTrace();
|
|
}
|
|
return model;
|
|
|
|
}
|
|
|
|
public List<PapGigiMulutVO> transferListOfModelToListOfVO(List<PapGigiMulut> models,
|
|
List<PapGigiMulutVO> vos) {
|
|
if (null == vos)
|
|
vos = new ArrayList<PapGigiMulutVO>();
|
|
|
|
if (null == models)
|
|
return vos;
|
|
|
|
for (PapGigiMulut PapGigiMulut : models) {
|
|
PapGigiMulutVO vo = new PapGigiMulutVO();
|
|
vo = transferModelToVO(PapGigiMulut, vo);
|
|
vos.add(vo);
|
|
}
|
|
|
|
return vos;
|
|
}
|
|
|
|
@Override
|
|
public PapGigiMulutVO transferModelToVO(PapGigiMulut model, PapGigiMulutVO vo) {
|
|
|
|
if (null == vo)
|
|
vo = new PapGigiMulutVO();
|
|
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, PapGigiMulutVO.class);
|
|
} catch (Exception e) {
|
|
e.printStackTrace();
|
|
}
|
|
|
|
return vo;
|
|
|
|
}
|
|
|
|
|
|
}
|