Package org.prevayler.foundation

Examples of org.prevayler.foundation.Chunk


  public TransactionTimestamp cleanCopy() {
    return new TransactionTimestamp(_capsule.cleanCopy(), _systemVersion, _executionTime);
  }

  public Chunk toChunk() {
    Chunk chunk = _capsule.toChunk();
    chunk.setParameter("systemVersion", String.valueOf(_systemVersion));
    chunk.setParameter("executionTime", String.valueOf(_executionTime));
    return chunk;
  }
View Full Code Here


   * Makes a clean copy of this capsule that will have its own query result fields.
   */
  public abstract Capsule cleanCopy();

  Chunk toChunk() {
    Chunk chunk = new Chunk(_serialized);
    chunk.setParameter("withQuery", String.valueOf(this instanceof TransactionWithQueryCapsule));
    return chunk;
  }
View Full Code Here

TOP

Related Classes of org.prevayler.foundation.Chunk

Copyright © 2018 www.massapicom. 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.