trait DansBag extends AnyRef
- Alphabetic
- By Inheritance
- DansBag
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Abstract Value Members
-
abstract
def
addBagInfo(key: String, value: String): DansBag
Add an entry to the bagInfo.
Add an entry to the bagInfo. Please note that this will only be synced with
bag-info.txt
once DansBag#save is called.- key
the key of the new entry
- value
the value of the new entry
- returns
this bag, with the new entry added
-
abstract
def
addFetchItem(url: URL, pathInData: Path): Try[DansBag]
Adds the triple (url, length, path) to the
fetch.txt
.Adds the triple (url, length, path) to the
fetch.txt
. If the path already exists in the fetch, or in the payload, an Exception will occur. The PayloadManifests are updated with the checksum of the downloaded file. The length will be calculated as well.Due to calculating the checksums for all files, as well as downloading all fetch files, this method may take some time to complete and return. It is therefore strongly advised to wrap a call to this method in a
Promise
/Future
,Observable
or any other desired data structure that deals with latency in a proper way.Please note that this will only be synced with
fetch.txt
andmanifest-<alg>.txt
once DansBag#save is called.- url
the url where the file is to be retrieved from
- pathInData
the path relative to the
bag/data
directory where the new file is virtually being placed- returns
this bag, with the new FetchItem
bag.addFetchItem(url, Paths.get("path/to/some/file.txt"))
Example: -
abstract
def
addPayloadFile(src: File, pathInData: Path)(implicit importOption: ImportOption = ImportOption.COPY): Try[DansBag]
Add a payload file to the bag at the position indicated by the path relative to the
bag/data
directory.Add a payload file to the bag at the position indicated by the path relative to the
bag/data
directory. If the resolved destination of this new file already exists within the bag, or if the resolved destination is outside of thebag/data
directory, this method will return ascala.util.Failure
. This method also adds the checksum of the new file to all payload manifests.The way of adding the payload file is determined by the implicit parameter
importOption
. By default this is set toCOPY
. If set toMOVE
, it will move the file if both source and destination are on the same mount, but will copy/delete otherwise. If set toATOMIC_MOVE
, it will move the file if both source and destination are on the same mount, but fail otherwise.When
src
is a directory, each file in that directory will be copied into the payload directory. IfMOVE
is selected forimportOption
, importing a directory structure is not allowed.Please note that fetch files are also considered part of the payload files. Therefore it is not allowed to add a payload file using this method that is already declared in
fetch.txt
.Please note that, while the new file is added to the bag immediately, the changes to the payload manifests will only be applied to the bag on the file system once DansBag#save is called.
- src
the source of the new file to be added to the bag
- pathInData
the path relative to the
bag/data
directory where the new file is being placed- importOption
the method of adding the payload file, either
COPY
,MOVE
orATOMIC_MOVE
- returns
this bag, with the added checksums of the new payload file
// add a single file bag.addPayloadFile(srcFile, Paths.get("path/to/some/file.txt")) // add a directory of files bag.addPayloadFile(srcDir, Paths.get("path/to/some/directory"))
Example: -
abstract
def
addPayloadFile(inputStream: InputStream, pathInData: Path): Try[DansBag]
Add a payload file from an
java.io.InputStream
to the bag at the position indicated by the path relative to thebag/data
directory.Add a payload file from an
java.io.InputStream
to the bag at the position indicated by the path relative to thebag/data
directory. If the resolved destination of this new file already exists within the bag, or if the resolved destination is outside of thebag/data
directory, this method will return ascala.util.Failure
. This method also adds the checksum of the new file to all payload manifests.Please note that fetch files are also considered part of the payload files. Therefore it is not allowed to add a payload file using this method that is already declared in
fetch.txt
.Please note that, while the new file is added to the bag immediately, the changes to the payload manifests will only be applied to the bag on the file system once DansBag#save is called.
- inputStream
the source of the new file to be added to the bag
- pathInData
the path relative to the
bag/data
directory where the new file is being placed- returns
this bag, with the added checksums of the new payload file
bag.addPayloadFile(inputStream, Paths.get("path/to/some/file.txt"))
Example: -
abstract
def
addPayloadManifestAlgorithm(checksumAlgorithm: ChecksumAlgorithm, updateManifest: Boolean = false): Try[DansBag]
Add an algorithm to the bag that will be used for calculating the checksums of the payload files.
Add an algorithm to the bag that will be used for calculating the checksums of the payload files. This method can also be used to update the checksums of payload files in case some files were mutated by other means than the use of this library. Supply
updateManifest = true
(default false) for this behaviour. In both use cases of this method, the payload manifest will be added to all tag manifests with a temporary value, indicating that the real checksum for the payload manifest will only be recalculated on calling DansBag#save. Since fetch files are also listed in all payload manifests, this method will upon encountering fetch files, download them using the specified URL and calculate their checksums according to the new/updated algorithm. Afterwards the downloaded files are deleted.Due to calculating the checksums for all files, as well as downloading all fetch files, this method may take some time to complete and return. It is therefore strongly advised to wrap a call to this method in a
Promise
/Future
,Observable
or any other desired data structure that deals with latency in a proper way.Please note that this new/updated algorithm will only be added to the bag on the file system once DansBag#save is called.
- checksumAlgorithm
the algorithm for which the payload checksums will be added or updated
- updateManifest
indicates whether it should update (
true
) or add (false
) the algorithm- returns
this bag, with the new algorithm added
-
abstract
def
addTagFile(src: File, pathInBag: Path): Try[DansBag]
Add a tag file to the bag at the position indicated by the path relative to the bag's base directory.
Add a tag file to the bag at the position indicated by the path relative to the bag's base directory. If the resolved destination of this new file already exists within the bag, or if the resolved destination is outside of the base directory, inside the
bag/data
directory or if it is equal to one of the reserved files (bagit.txt
,bag-info.txt
,fetch.txt
,manifest-*.txt
ortagmanifest-*.txt
) this method will return ascala.util.Failure
. This method also adds the checksum of the new file to all tag manifests.When
src
is a directory, each file will in that directory will be copied into the payload directory.Please note that, while the new file is added to the bag immediately, the changes to the tag manifests will only be applied to the bag on the file system once DansBag#save is called.
- src
the source of the new file to be added to the bag
- pathInBag
the path relative to the bag's base directory where the new file is being placed
- returns
this bag, with the added checksums of the new tag file
// add a single file bag.addTagFile(srcFile, Paths.get("path/to/some/file.txt")) // add a directory of files bag.addTagFile(srcDir, Paths.get("path/to/some/directory"))
Example: -
abstract
def
addTagFile(inputStream: InputStream, pathInBag: Path): Try[DansBag]
Add a tag file from an
java.io.InputStream
to the bag at the position indicated by the path relative to the bag's base directory.Add a tag file from an
java.io.InputStream
to the bag at the position indicated by the path relative to the bag's base directory. If the resolved destination of this new file already exists within the bag, or if the resolved destination is outside of the base directory, inside thebag/data
directory or if it is equal to one of the reserved files (bagit.txt
,bag-info.txt
,fetch.txt
,manifest-*.txt
ortagmanifest-*.txt
) this method will return ascala.util.Failure
. This method also adds the checksum of the new file to all tag manifests.Please note that, while the new file is added to the bag immediately, the changes to the tag manifests will only be applied to the bag on the file system once DansBag#save is called.
- inputStream
the source of the new file to be added to the bag
- pathInBag
the path relative to the bag's base directory where the new file is being placed
- returns
this bag, with the added checksums of the new tag file
bag.addTagFile(inputStream, Paths.get("path/to/some/file.txt"))
Example: -
abstract
def
addTagManifestAlgorithm(checksumAlgorithm: ChecksumAlgorithm, updateManifest: Boolean = false): Try[DansBag]
Add an algorithm to the bag that will be used for calculating the checksums of the tag files.
Add an algorithm to the bag that will be used for calculating the checksums of the tag files. This method can also be used to update the checksums of tag files in case some files were mutated by other means than the use of this library. Supply
updateManifest = true
(default false) for this behaviour.Please note that this new/updated algorithm will only be added to the bag on the file system once DansBag#save is called.
- checksumAlgorithm
the algorithm for which the tagfiles' checksums will be added or updated
- updateManifest
indicates whether it should update (
true
) or add (false
) the algorithm- returns
this bag, with the new algorithm added
-
abstract
def
bagInfo: Map[String, Seq[String]]
List all entries of
bag/bag-info.txt
.List all entries of
bag/bag-info.txt
. Key-value pairs will be grouped on key, such that if any key is listed multiple times, their values will end up together in aSeq[String]
.- returns
a Map containing all entries of
bag/bag-info.txt
-
abstract
def
bagitVersion: Version
- returns
the bag's
gov.loc.repository.bagit.domain.Version
, which is stored inbagit.txt
-
abstract
val
baseDir: File
The base directory of the bag this object represents
-
abstract
def
created: Try[Option[DateTime]]
Retrieves the value for key 'Created' from
bag-info.txt
as a parsedorg.joda.time.DateTime
object.Retrieves the value for key 'Created' from
bag-info.txt
as a parsedorg.joda.time.DateTime
object. If this key has an invalid value, aFailure
is returned instead. If the key is not present, aSuccess(None)
is returned instead.- returns
the
DateTime
object found in the 'Created' key inbag-info.txt
-
abstract
val
data: File
The data directory of the bag this object represents
-
abstract
def
easyUserAccount: Try[Option[String]]
Retrieves the value for the 'EASY-User-Account' key.
Retrieves the value for the 'EASY-User-Account' key.
- returns
the EASY user account value
-
abstract
def
fetchFiles: Seq[FetchItem]
Lists all files that are stated in
fetch.txt
.Lists all files that are stated in
fetch.txt
.- returns
all entries listed in
fetch.txt
-
abstract
def
fileEncoding: Charset
- returns
the bag's
java.nio.charset.Charset
, which is stored inbagit.txt
- abstract def isComplete(executor: ExecutorService): Either[String, Unit]
-
abstract
def
isComplete: Either[String, Unit]
Verifies if a bag is complete.
Verifies if a bag is complete. According to the BagIt version 16 specs, a bag is complete when:
- bagit.txt is present
- data/ directory is present
- at least one payload manifest exists
- all fetch items are present in the bag
- all files in every payload manifest must be present
- all files in every tag manifest must be present
- (>= V1.0 bag) all files in the payload directory are listed in all payload manifests
- (< V1.0 bag) all files in the payload directory are listed in at least one payload manifest
- returns
either
Unit
(if the bag is complete) orString
(containing the error message if the bag is not complete)
- abstract def isValid(executor: ExecutorService): Either[String, Unit]
-
abstract
def
isValid: Either[String, Unit]
Verifies if a bag is valid.
Verifies if a bag is valid. According to the BagIt v16 specs, a bag is valid when:
- the bag is complete
- every checksum in every payload manifest has been successfully verified against the contents of the corresponding file
- every checksum in every tag manifest has been successfully verified against the contents of the corresponding file
Due to calculating the checksums for all files, this method may take some time to complete and return. It is therefore strongly advised to wrap a call to this method in a
Promise
/Future
,Observable
or any other desired data structure that deals with latency in a proper way.- returns
either
Unit
(if the bag is valid) orString
(containing the error message if the bag is not valid)
-
abstract
def
isVersionOf: Try[Option[URI]]
Retrieves the value for key 'Is-Version-Of' from
bag-info.txt
as ajava.net.URI
object.Retrieves the value for key 'Is-Version-Of' from
bag-info.txt
as ajava.net.URI
object. If this key has an invalid value (if it does not match the patternurn:uuid:[0-9a-f]{8}(-[0-9a-f]{4}){3}-[0-9a-f]{12}
), aFailure
is returned instead. If the key is not present, aSuccess(None)
is returned instead.- returns
the
URI
object found in the 'Is-Version-Of' key inbag-info.txt
-
abstract
def
payloadManifestAlgorithms: Set[ChecksumAlgorithm]
List all algorithms that are being used in this bag to calculate the checksums of the payload files.
List all algorithms that are being used in this bag to calculate the checksums of the payload files.
- returns
the set of algorithms used for calculating the payload's checksums
-
abstract
def
payloadManifests: Map[ChecksumAlgorithm, Map[File, String]]
For each algorithm, list the mappings of payload file to its checksum.
For each algorithm, list the mappings of payload file to its checksum.
- returns
the mapping of payload file to its checksum, for each algorithm
-
abstract
def
removeBagInfo(key: String): DansBag
Remove all entries with the given key.
Remove all entries with the given key. Please note that this will only be synced with
bag-info.txt
once DansBag#save is called.- key
the key to be removed
- returns
this bag, without the removed entries
-
abstract
def
removeFetchItem(item: FetchItem): DansBag
Removes the fetchitem with this pathInData from the
fetch.txt
and the PayloadManifests.Removes the fetchitem with this pathInData from the
fetch.txt
and the PayloadManifests.Please note that this will only be synced with
fetch.txt
andmanifest-<alg>.txt
once DansBag#save is called.- item
the FetchItem to be removed
- returns
this bag, without the FetchItem
-
abstract
def
removeFetchItem(url: URL): Try[DansBag]
Removes the fetchitem with this pathInData from the
fetch.txt
and the PayloadManifests.Removes the fetchitem with this pathInData from the
fetch.txt
and the PayloadManifests.Please note that this will only be synced with
fetch.txt
andmanifest-<alg>.txt
once DansBag#save is called.- url
the url of the fetchitem to be removed
- returns
this bag, without the fetchitem
-
abstract
def
removeFetchItem(pathInData: Path): Try[DansBag]
Removes the fetchitem with this pathInData from the
fetch.txt
and the PayloadManifests.Removes the fetchitem with this pathInData from the
fetch.txt
and the PayloadManifests.Please note that this will only be synced with
fetch.txt
andmanifest-<alg>.txt
once DansBag#save is called.- pathInData
the path relative to the
bag/data
directory of the fetchitem to be removed- returns
this bag, without the fetchitem
bag.removeFetchItem(Paths.get("path/to/some/file.txt"))
Example: -
abstract
def
removePayloadFile(pathInData: Path): Try[DansBag]
Remove the payload file (relative to the
bag/data
directory) from the bag.Remove the payload file (relative to the
bag/data
directory) from the bag. This also removes the related entries from all payload manifests. If the removal of this file causes a directory to be empty, it is removed from the bag as well. However, an emptybag/data
directory is preserved. If the given file does not exist or is not inside thebag/data
directory or it is a directory, ascala.util.Failure
is returned.Please note that, while the file is removed from the bag immediately, the changes to the payload manifests will only be applied to the bag on the file system once DansBag#save is called.
- pathInData
the path to the file within
bag/data
that is being removed- returns
this bag, without the payload manifest entries for the removed file
bag.removePayloadFile(Paths.get("path/to/some/file.txt"))
Example: -
abstract
def
removePayloadManifestAlgorithm(checksumAlgorithm: ChecksumAlgorithm): Try[DansBag]
Remove an algorithm from the bag, which was used for calculating the checksums of the payload files.
Remove an algorithm from the bag, which was used for calculating the checksums of the payload files. It also removes the payload manifest from all tagmanifests as well.
Please note that this change will only be applied to the bag on the file system once DansBag#save is called.
- checksumAlgorithm
the algorithm to be removed from the bag with respect to the payload files
- returns
this bag, without the removed algorithm
-
abstract
def
removeTagFile(pathInBag: Path): Try[DansBag]
Remove the tag file (relative to the bag's base directory) from the bag.
Remove the tag file (relative to the bag's base directory) from the bag. This also removes the related entries from all tag manifests. If the removal of this file causes a directory to be empty, it is removed from the bag as well. If the given file does not exist, or is inside the
bag/data
directory, outside/equal to the base directory, or is a directory, or is one of the reserved files (bagit.txt
,bag-info.txt
,fetch.txt
,manifest-*.txt
ortagmanifest-*.txt
) ascala.util.Failure
is returned.Please note that, while the file is removed from the bag immediately, the changes to the tag manifests will only be applied to the bag on the file system once DansBag#save is called.
- pathInBag
the path to the file within the bag's base directory that is being removed
- returns
this bag, without the tag manifest entries for the removed file
bag.removeTagFile(Paths.get("path/to/some/file.txt"))
Example: -
abstract
def
removeTagManifestAlgorithm(checksumAlgorithm: ChecksumAlgorithm): Try[DansBag]
Remove an algorithm from the bag, which was used for calculating the checksums of the tag files.
Remove an algorithm from the bag, which was used for calculating the checksums of the tag files.
Please note that this change will only be applied to the bag on the file system once DansBag#save is called.
- checksumAlgorithm
the algorithm to be removed from the bag with respect to the tag files
- returns
this bag, without the removed algorithm
-
abstract
def
replaceFetchItemWithFile(item: FetchItem): Try[DansBag]
Downloads a file from the list of fetch files (indicated by the FetchItem) through the corresponding
URL
and stores it at its original place.Downloads a file from the list of fetch files (indicated by the FetchItem) through the corresponding
URL
and stores it at its original place. The original reference infetch.txt
is removed.If the checksum(s) of the downloaded file do(es) not match the checksum(s) listed in the payload manifest(s), a
Failure
will be returned.Due to downloading the file, this method may take some time to complete and return. It is therefore strongly advised to wrap a call to this method in a
Promise
/Future
,Observable
or any other desired data structure that deals with latency in a proper way.Please note that this change is applied immediately and, since no changes are made to the rest of the bag, there is no need to call DansBag#save for this to have full effect.
- item
the FetchItem containing the URL and path to the file in the
bag/data
directory- returns
this bag, after having downloaded the file
-
abstract
def
replaceFetchItemWithFile(url: URL): Try[DansBag]
Downloads a file from the list of fetch files (indicated by the
URL
) and stores it at its original place, as indicated by thefetch.txt
file.Downloads a file from the list of fetch files (indicated by the
URL
) and stores it at its original place, as indicated by thefetch.txt
file. The original reference infetch.txt
is removed.If the checksum(s) of the downloaded file do(es) not match the checksum(s) listed in the payload manifest(s), a
Failure
will be returned.Due to downloading the file, this method may take some time to complete and return. It is therefore strongly advised to wrap a call to this method in a
Promise
/Future
,Observable
or any other desired data structure that deals with latency in a proper way.Please note that this change is applied immediately and, since no changes are made to the rest of the bag, there is no need to call DansBag#save for this to have full effect.
- url
a
URL
that is listed in the fetch file and through which the file can be downloaded- returns
this bag, after having downloaded the file
-
abstract
def
replaceFetchItemWithFile(pathInData: Path): Try[DansBag]
Downloads a file from the list of fetch files (indicated by the relative path to
bag/data
) through the correspondingURL
and stores it at its original place.Downloads a file from the list of fetch files (indicated by the relative path to
bag/data
) through the correspondingURL
and stores it at its original place. The original reference infetch.txt
is removed.If the checksum(s) of the downloaded file do(es) not match the checksum(s) listed in the payload manifest(s), a
Failure
will be returned. In this case, the file is not added to the payload directory.Due to downloading the file, this method may take some time to complete and return. It is therefore strongly advised to wrap a call to this method in a
Promise
/Future
,Observable
or any other desired data structure that deals with latency in a proper way.Please note that this change is applied immediately and, since no changes are made to the rest of the bag, there is no need to call DansBag#save for this to have full effect.
- pathInData
a relative path in
bag/data
that is listed in the fetch file and where the file is stored on file system after being downloaded- returns
this bag, after having downloaded the file
bag.replaceFetchItemWithFile(Paths.get("path/to/some/file.txt"))
Example: -
abstract
def
replaceFileWithFetchItem(pathInData: Path, url: URL): Try[DansBag]
Migrates a file from the payload directory to the fetch file, where it is referenced by the given
URL
.Migrates a file from the payload directory to the fetch file, where it is referenced by the given
URL
. If the resolved path of the original file does not exist in the bag, or if the resolved path is outside of thebag/data
directory, aFailure
is returned. TheURL
is not checked for its resolvability, nor is this method responsible for uploading the referenced file to the specificURL
.Please note that, while the file is removed from the bag immediately, the changes to the fetch file will only be applied to the bag on the file system once DansBag#save is called.
- pathInData
the path in
bag/data
to the file that is included in the fetch file- url
the
URL
through which the file will be resolved in the future- returns
this bag, with the added reference in the fetch file
bag.replaceFileWithFetchItem(Paths.get("path/to/some/file.txt"), url)
Example: -
abstract
def
save(): Try[Unit]
Save all changes made to this bag (using the above methods) to the file system.
Save all changes made to this bag (using the above methods) to the file system.
If there are no payload algorithms left (due to excessive calls to DansBag#removePayloadManifestAlgorithm), this method will fail before any writing to the file system is performed. It will also fail if the bag is not writeable.
First the
bagit.txt
file is saved, containing the bag's version and the tag file encoding. Next, all payload manifests are removed and new files are created for the registered payload algorithms. Then,bag-info.txt
is regenerated, including a refreshed 'Payload-Oxum', 'Bagging-Date' and 'Bag-Size'. Next, if there are any fetch files added to the bag, thefetch.txt
file is created. If instead the fetch files were being removed from the bag,fetch.txt
is deleted. Finally, all tag manifests are recalculated and saved in both this bag and on the file system.- returns
scala.util.Success
if the save was performed successfully,scala.util.Failure
otherwise
-
abstract
def
tagManifestAlgorithms: Set[ChecksumAlgorithm]
List all algorithms that are being used in this bag to calculate the checksums of the tag files.
List all algorithms that are being used in this bag to calculate the checksums of the tag files.
- returns
the set of algorithms used for calculating the tagfiles' checksums
-
abstract
def
tagManifests: Map[ChecksumAlgorithm, Map[File, String]]
For each algorithm, list the mappings of tag file to its checksum.
For each algorithm, list the mappings of tag file to its checksum.
- returns
the mapping of tag file to its checksum, for each algorithm
-
abstract
def
withBagitVersion(major: Int, minor: Int): DansBag
Change the bag's
gov.loc.repository.bagit.domain.Version
to a newVersion
.Change the bag's
gov.loc.repository.bagit.domain.Version
to a newVersion
. Please note that this will only be synced withbagit.txt
once DansBag#save is called.- major
major part of the version number
- minor
minor part of the version number
- returns
this bag, with a new
Version
comprised of themajor
andminor
inputs
-
abstract
def
withBagitVersion(version: Version): DansBag
Change the bag's
gov.loc.repository.bagit.domain.Version
to a newVersion
.Change the bag's
gov.loc.repository.bagit.domain.Version
to a newVersion
. Please note that this will only be synced withbagit.txt
once DansBag#save is called.- version
the new
Version
of the bag- returns
this bag, with the new
Version
-
abstract
def
withCreated(created: DateTime = DateTime.now()): DansBag
Adds the key 'Created' from
bag-info.txt
.Adds the key 'Created' from
bag-info.txt
. If the key is already present, it is replaced with the new value. When no argument is supplied, a default valueDateTime.now()
is used instead. Please note that this will only be synced withbag-info.txt
once DansBag#save is called.- created
the
DateTime
object on which the bag's content was created- returns
this bag, with the new value for 'Created' in
bag-info.txt
-
abstract
def
withEasyUserAccount(userId: String): DansBag
Adds
userId
under the key 'EASY-User-Account' tobag-info.txt
.Adds
userId
under the key 'EASY-User-Account' tobag-info.txt
. If the key is already present the value is overwritten.Please, note that this will not be persisted to disk until DansBag#save is used.
- returns
the modified DansBag
-
abstract
def
withFileEncoding(charset: Charset): DansBag
Change the bag's
java.nio.charset.Charset
to a newCharset
.Change the bag's
java.nio.charset.Charset
to a newCharset
. Please note that this will only be synced withbagit.txt
once DansBag#save is called.- charset
the new
Charset
of the bag- returns
this bag, with the new
Charset
-
abstract
def
withIsVersionOf(uuid: UUID): DansBag
Adds the key 'Is-Version-Of' from
bag-info.txt
.Adds the key 'Is-Version-Of' from
bag-info.txt
. If the key is already present, it is replaced with the new value. The givenjava.util.UUID
is used to construct ajava.net.URI
of the formurn:uuid:[uuid]
. Please note that this will only be synced withbag-info.txt
once DansBag#save is called.- uuid
the
UUID
of the previous revision of this bag- returns
this bag, with the new value for 'Is-Version-Of' in
bag-info.txt
-
abstract
def
withoutCreated(): DansBag
Remove the entry with key 'Created' from
bag-info.txt
.Remove the entry with key 'Created' from
bag-info.txt
. Please note that this will only be synced withbag-info.txt
once DansBag#save is called.- returns
this bag, without the removed entry
-
abstract
def
withoutEasyUserAccount(): DansBag
Removes the entry with key 'EASY-User-Account' from
bag-info.txt
.Removes the entry with key 'EASY-User-Account' from
bag-info.txt
.Please, note that this will not be persisted to disk until DansBag#save is used.
- returns
the modified DansBag
-
abstract
def
withoutIsVersionOf(): DansBag
Remove the entry with key 'Is-Version-Of' from
bag-info.txt
.Remove the entry with key 'Is-Version-Of' from
bag-info.txt
. Please note that this will only be synced withbag-info.txt
once DansBag#save is called.- returns
this bag, without the removed entry
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()