Package org.jboss.vfs.util.automount
Class MountConfig
java.lang.Object
org.jboss.vfs.util.automount.MountConfig
Configuration used to control the auto-mount behavior.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription(package private) boolean
Should the archive be copied to a temporary location before being mounted.(package private) boolean
Should the archive be mounted as an expanded zip filesystem.(package private) void
setCopyTarget
(boolean copyTarget) Set whether the archive should be copied before being mounted.(package private) void
setMountExpanded
(boolean mountExpanded) Set whether the mount should be an expanded zip filesystem.toString()
-
Field Details
-
mountExpanded
private boolean mountExpanded -
copyTarget
private boolean copyTarget
-
-
Constructor Details
-
MountConfig
MountConfig()
-
-
Method Details
-
mountExpanded
boolean mountExpanded()Should the archive be mounted as an expanded zip filesystem. Defaults to false.- Returns:
- true if it should be expanded
-
setMountExpanded
void setMountExpanded(boolean mountExpanded) Set whether the mount should be an expanded zip filesystem.- Parameters:
mountExpanded
- the boolean value to set it to
-
copyTarget
boolean copyTarget()Should the archive be copied to a temporary location before being mounted. Defaults to false.- Returns:
- true if the archive should be copied before being mounted
-
setCopyTarget
void setCopyTarget(boolean copyTarget) Set whether the archive should be copied before being mounted.- Parameters:
copyTarget
- the boolean value to set it to
-
toString
-