Package net.sf.joafip.store.service

Examples of net.sf.joafip.store.service.StoreException


    this.fileAccessMode = fileAccessMode;
  }

  public int getMaxNumberOfBuffer() throws StoreException {
    if (maxNumberOfBuffer == null) {
      throw new StoreException("number of file buffer parameter not set");
    }
    return maxNumberOfBuffer;
  }
View Full Code Here


    this.maxNumberOfBuffer = maxNumberOfBuffer;
  }

  public int getMaxBufferSize() throws StoreException {
    if (maxBufferSize == null) {
      throw new StoreException("file buffer size parameter not set");
    }
    return maxBufferSize;
  }
View Full Code Here

    this.maxBufferSize = maxBufferSize;
  }

  public EnumFileAccessMode getFileAccessMode() throws StoreException {
    if (dataManager == null && fileAccessMode == null) {
      throw new StoreException("file access mode is not defined");
    }
    return fileAccessMode;
  }
View Full Code Here

    this.classNameListRootDataRecordIdentifier =
    /**/classNameListRootDataRecordIdentifier;
    try {
      setStateHaveChanged();
    } catch (HeapRecordableException exception) {
      throw new StoreException(exception);
    }
  }
View Full Code Here

    this.garbageCandidateRootDataRecordIdentifier =
    /**/garbageCandidateRootDataRecordIdentifier;
    try {
      setStateHaveChanged();
    } catch (HeapRecordableException exception) {
      throw new StoreException(exception);
    }
  }
View Full Code Here

    this.toGarbageRootDataRecordIdentifier =
    /**/toGarbageRootDataRecordIdentifier;
    try {
      setStateHaveChanged();
    } catch (HeapRecordableException exception) {
      throw new StoreException(exception);
    }
  }
View Full Code Here

    this.garbageReferenceLinkRootDataRecordIdentifier =
    /**/garbageReferenceLinkRootDataRecordIdentifier;
    try {
      setStateHaveChanged();
    } catch (HeapRecordableException exception) {
      throw new StoreException(exception);
    }
  }
View Full Code Here

    localCheckLoaded();
    this.garbageCandidateInProcess = garbageCandidateInProcess;
    try {
      setStateHaveChanged();
    } catch (HeapRecordableException exception) {
      throw new StoreException(exception);
    }
  }
View Full Code Here

    localCheckLoaded();
    this.toVisitByCollectorRootDataRecordIdentifier = toVisitByCollectorRootDataRecordIdentifier;
    try {
      setStateHaveChanged();
    } catch (HeapRecordableException exception) {
      throw new StoreException(exception);
    }
  }
View Full Code Here

    localCheckLoaded();
    this.visitedByCollectorRootDataRecordIdentifier = visitedByCollectorRootDataRecordIdentifier;
    try {
      setStateHaveChanged();
    } catch (HeapRecordableException exception) {
      throw new StoreException(exception);
    }
  }
View Full Code Here

TOP

Related Classes of net.sf.joafip.store.service.StoreException

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.