Newer
Older
Cactus-CleanArchitecture / app / src / main / java / org / ntlab / radishforandroidstudio / cactusClient / entity / mapper / CactusEntityJsonMapper.java
package org.ntlab.radishforandroidstudio.cactusClient.entity.mapper;

import net.arnx.jsonic.JSON;

/**
 * Jsonを表すStringから有効なObjectへの変換に使用されるクラス
 */
public class CactusEntityJsonMapper {

    private final JSON json;

    public CactusEntityJsonMapper() {
        this.json = new JSON();
    }

}