Package org.infinispan.protostream.sampledomain.marshallers

Source Code of org.infinispan.protostream.sampledomain.marshallers.AccountMarshaller

package org.infinispan.protostream.sampledomain.marshallers;

import org.infinispan.protostream.MessageMarshaller;
import org.infinispan.protostream.sampledomain.Account;

import java.io.IOException;
import java.util.Date;

/**
* @author anistor@redhat.com
*/
public class AccountMarshaller implements MessageMarshaller<Account> {

   @Override
   public String getFullName() {
      return "sample_bank_account.Account";
   }

   @Override
   public Account readFrom(ProtoStreamReader reader) throws IOException {
      int id = reader.readInt("id");
      String description = reader.readString("description");
      long creationDate = reader.readLong("creationDate");

      Account account = new Account();
      account.setId(id);
      account.setDescription(description);
      account.setCreationDate(new Date(creationDate));
      return account;
   }

   @Override
   public void writeTo(ProtoStreamWriter writer, Account account) throws IOException {
      writer.writeInt("id", account.getId());
      writer.writeString("description", account.getDescription());
      writer.writeLong("creationDate", account.getCreationDate().getTime());
   }
}
TOP

Related Classes of org.infinispan.protostream.sampledomain.marshallers.AccountMarshaller

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.