view src/main/java/jp/ac/u_ryukyu/ie/cr/shoshi/jungle/store/operations/SetAttributeOperation.java @ 33:9f8b91265c3e

added NullJournal
author Shoshi TAMAKI
date Wed, 23 Jan 2013 13:49:20 +0900
parents 703f0be5368a
children
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();
}