Package org.jboss.vfs.util.automount
Class MountConfig
- java.lang.Object
-
- org.jboss.vfs.util.automount.MountConfig
-
class MountConfig extends java.lang.Object
Configuration used to control the auto-mount behavior.
-
-
Field Summary
Fields Modifier and Type Field Description private boolean
copyTarget
private boolean
mountExpanded
-
Constructor Summary
Constructors Constructor Description MountConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) boolean
copyTarget()
Should the archive be copied to a temporary location before being mounted.(package private) boolean
mountExpanded()
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.java.lang.String
toString()
-
-
-
Method Detail
-
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
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-