view src/main/java/alice/jungle/operations/NetworkDeleteAttributeOperation.java @ 193:89c15aa2bc6d

change transaction
author tatsuki
date Fri, 20 Mar 2015 16:18:42 +0900
parents 2828205bdc3a
children
line wrap: on
line source

package alice.jungle.operations;

import java.nio.ByteBuffer;

import org.msgpack.annotation.Message;

import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.store.Command;
import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.store.impl.TreeNode;
import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.store.operations.NodeOperation;
import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.util.Either;
import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.util.Error;

@Message
public class NetworkDeleteAttributeOperation implements NodeOperation
{
	/* MessagePack cannot handle final.*/
	//private final String key;
	private String key;
	
	public NetworkDeleteAttributeOperation()
	{
		key = null;
	}
	
	public NetworkDeleteAttributeOperation(String _key)
	{
		key = _key;
	}
	
	@Override
	public Command getCommand()
	{
		return Command.DELETE_ATTRIBUTE;
	}
	
	@Override
	public Either<Error, TreeNode> invoke(TreeNode _target)
	{
		return _target.getAttributes().delete(key);
	}

	@Override
	public int getPosition()
	{
		return -1;
	}

	@Override
	public String getKey()
	{
		return key;
	}

	@Override
	public ByteBuffer getValue()
	{
		return null;
	}
}