Package org.jboss.vfs.util.automount
Class MountConfig
- java.lang.Object
-
- org.jboss.vfs.util.automount.MountConfig
-
class MountConfig extends java.lang.ObjectConfiguration used to control the auto-mount behavior.
-
-
Field Summary
Fields Modifier and Type Field Description private booleancopyTargetprivate booleanmountExpanded
-
Constructor Summary
Constructors Constructor Description MountConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) booleancopyTarget()Should the archive be copied to a temporary location before being mounted.(package private) booleanmountExpanded()Should the archive be mounted as an expanded zip filesystem.(package private) voidsetCopyTarget(boolean copyTarget)Set whether the archive should be copied before being mounted.(package private) voidsetMountExpanded(boolean mountExpanded)Set whether the mount should be an expanded zip filesystem.java.lang.StringtoString()
-
-
-
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:
toStringin classjava.lang.Object
-
-