comparison src/main/java/alice/jungle/operations/NetworkPutAttributeOperation.java @ 109:b6d2db67febe

Added tag
author one
date Tue, 26 Nov 2013 16:36:26 +0900
parents f9e29a52efd3
children 6f104ab4eb81
comparison
equal deleted inserted replaced
108:d7bff80b1832 109:b6d2db67febe
17 /* MessagePack cannot handle final. 17 /* MessagePack cannot handle final.
18 * 18 *
19 * private final String key; 19 * private final String key;
20 * private final ByteBuffer value; 20 * private final ByteBuffer value;
21 */ 21 */
22 private String key; 22 public String key;
23 private ByteBuffer value; 23 public ByteBuffer value;
24 24
25 public NetworkPutAttributeOperation() 25 public NetworkPutAttributeOperation()
26 { 26 {
27 key = null; 27 key = null;
28 value = null; 28 value = null;