Class MountConfig

java.lang.Object
org.jboss.vfs.util.automount.MountConfig

class MountConfig extends Object
Configuration used to control the auto-mount behavior.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private boolean
     
    private boolean
     
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    (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.
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • 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

      public String toString()
      Overrides:
      toString in class Object