view src/main/java/jp/ac/u_ryukyu/ie/cr/shoshi/jungle/store/operations/SetAttributeOperation.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/SetAttribute.java@8d4cbd5a6525
children 9f8b91265c3e
line wrap: on
line source

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

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

public abstract class SetAttributeOperation implements Operation
{
	@Override
	public Command getCommand()
	{
		return Command.SET_ATTRIBUTE;
	}
	
	public abstract String getKey();
	public abstract ByteBuffer getValue();
}