1 22 package org.jboss.aspects.versioned; 23 import org.jboss.util.id.GUID; 24 25 import java.util.HashMap ; 26 27 public class DistributedPOJOUpdate implements java.io.Serializable , DistributedUpdate 28 { 29 private static final long serialVersionUID = -1994362590254736537L; 30 31 public GUID guid; 32 public HashMap fieldUpdates; 33 34 public DistributedPOJOUpdate() {} 35 36 public DistributedPOJOUpdate(GUID guid, HashMap updates) 37 { 38 this.guid = guid; 39 this.fieldUpdates = updates; 40 } 41 42 public GUID getGUID() { return guid; } 43 } 44 | Popular Tags |