Package net.sf.joafip.entity

Examples of net.sf.joafip.entity.EnumFilePersistenceCloseAction


      FilePersistenceInvalidClassException,
      FilePersistenceNotSerializableException,
      FilePersistenceClassNotFoundException,
      FilePersistenceDataCorruptedException,
      FilePersistenceTooBigForSerializationException {
    final EnumFilePersistenceCloseAction actionExecuted;
    synchronized (mutex) {
      try {
        assertExclusiveDataAccessSessionClosed();
        removeOpenedSession(session);
        closePendingDataAccessSessionSet.add(session);
View Full Code Here


    }
    return actionExecuted;
  }

  private EnumFilePersistenceCloseAction fireClosed() {
    final EnumFilePersistenceCloseAction actionExecuted;
    actionExecuted = this.action;
    this.action = null;// NOPMD action is undefined
    for (final IDASFilePersistenceCallBack dataAccessSession : closePendingDataAccessSessionSet) {
      dataAccessSession.fireActionDone(actionExecuted);
    }
View Full Code Here

      FilePersistenceInvalidClassException,
      FilePersistenceNotSerializableException,
      FilePersistenceClassNotFoundException,
      FilePersistenceDataCorruptedException,
      FilePersistenceTooBigForSerializationException {
    final EnumFilePersistenceCloseAction actionExecuted;
    synchronized (mutex) {
      try {
        assertPersistenceOpenned();
        assertOpened();
        actionExecuted = filePersistence.endUse(this, action);
View Full Code Here

      FilePersistenceInvalidClassException,
      FilePersistenceNotSerializableException,
      FilePersistenceClassNotFoundException,
      FilePersistenceDataCorruptedException,
      FilePersistenceTooBigForSerializationException {
    EnumFilePersistenceCloseAction actionExecuted;
    synchronized (mutex) {
      try {
        assertPersistenceOpenned();
        assertOpened();
        actionExecuted = filePersistence.endUse(this, action);
View Full Code Here

TOP

Related Classes of net.sf.joafip.entity.EnumFilePersistenceCloseAction

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.