diff --git a/src/main/java/cactusServer/entities/AddressedEntity.java b/src/main/java/cactusServer/entities/AddressedEntity.java deleted file mode 100644 index d66bee5..0000000 --- a/src/main/java/cactusServer/entities/AddressedEntity.java +++ /dev/null @@ -1,26 +0,0 @@ -package cactusServer.entities; - -/** - * �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; - } -}