view src/main/java/jp/ac/u_ryukyu/ie/cr/shoshi/jungle/store/operations/DeleteAttributeOperation.java @ 19:703f0be5368a

added attribute cache
author Shoshi TAMAKI
date Thu, 20 Dec 2012 18:09:17 +0900
parents src/main/java/jp/ac/u_ryukyu/ie/cr/shoshi/jungle/store/operations/DeleteAttribute.java@8d4cbd5a6525
children 0a3bff2d9c89
line wrap: on
line source

package jp.ac.u_ryukyu.ie.cr.shoshi.jungle.store.operations;

import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.store.Command;

public abstract class DeleteAttributeOperation implements Operation
{
	@Override
	public Command getCommand()
	{
		return Command.DELETE_ATTRIBUTE;
	}
	
	public abstract String getKey();
}