Newer
Older
Cactus-CleanArchitecture / app / src / main / java / org / ntlab / radishforandroidstudio / cactusClient / models / AddressedEntity.java
h-matsumoto on 7 Jun 2018 590 bytes おk
package org.ntlab.radishforandroidstudio.cactusClient.models;

/**
 * �e���\�[�X��POST�ō쐬�����ۂ�, ���Y���\�[�X�̎��̂�URI���Ăяo�����ɕԂ��Ƃ��ɗp����N���X
 * @author r-isitani
 *
 */
public abstract class AddressedEntity {
	private Entity body;
	
	protected AddressedEntity() {
		// JSONDecode���̌Ăяo���p
	}

	public AddressedEntity(Entity body) {
		setBody(body);
	}

	public Entity getBody() {
		return body;
	}
	
	public void setBody(Entity body) {
		this.body = body;
	}
}