summaryrefslogtreecommitdiffstats
path: root/java/com/redhat
diff options
context:
space:
mode:
authorRichard Jones <rjones@redhat.com>2009-04-22 21:02:49 +0100
committerRichard Jones <rjones@redhat.com>2009-04-22 21:02:49 +0100
commit79cdf81e2fb717ea4372a55170d16800cdbddf23 (patch)
tree42b91b69ef02a17c49de10944d249526d63698f6 /java/com/redhat
parentd7ffe439e8ec5304a1a2d1eb591d348c4ab84f38 (diff)
downloadlibguestfs-79cdf81e2fb717ea4372a55170d16800cdbddf23.tar.gz
libguestfs-79cdf81e2fb717ea4372a55170d16800cdbddf23.tar.xz
libguestfs-79cdf81e2fb717ea4372a55170d16800cdbddf23.zip
Generated code for new mount_* commands.
Diffstat (limited to 'java/com/redhat')
-rw-r--r--java/com/redhat/et/libguestfs/GuestFS.java56
1 files changed, 56 insertions, 0 deletions
diff --git a/java/com/redhat/et/libguestfs/GuestFS.java b/java/com/redhat/et/libguestfs/GuestFS.java
index 119a2df1..bb6c8d70 100644
--- a/java/com/redhat/et/libguestfs/GuestFS.java
+++ b/java/com/redhat/et/libguestfs/GuestFS.java
@@ -2130,4 +2130,60 @@ public class GuestFS {
private native void _tgz_out (long g, String directory, String tarball)
throws LibGuestFSException;
+ /**
+ * mount a guest disk, read-only
+ *
+ * This is the same as the "g.mount" command, but it mounts
+ * the filesystem with the read-only (*-o ro*) flag.
+ *
+ * @throws LibGuestFSException
+ */
+ public void mount_ro (String device, String mountpoint)
+ throws LibGuestFSException
+ {
+ if (g == 0)
+ throw new LibGuestFSException ("mount_ro: handle is closed");
+ _mount_ro (g, device, mountpoint);
+ }
+ private native void _mount_ro (long g, String device, String mountpoint)
+ throws LibGuestFSException;
+
+ /**
+ * mount a guest disk with mount options
+ *
+ * This is the same as the "g.mount" command, but it allows
+ * you to set the mount options as for the mount(8) *-o*
+ * flag.
+ *
+ * @throws LibGuestFSException
+ */
+ public void mount_options (String options, String device, String mountpoint)
+ throws LibGuestFSException
+ {
+ if (g == 0)
+ throw new LibGuestFSException ("mount_options: handle is closed");
+ _mount_options (g, options, device, mountpoint);
+ }
+ private native void _mount_options (long g, String options, String device, String mountpoint)
+ throws LibGuestFSException;
+
+ /**
+ * mount a guest disk with mount options and vfstype
+ *
+ * This is the same as the "g.mount" command, but it allows
+ * you to set both the mount options and the vfstype as for
+ * the mount(8) *-o* and *-t* flags.
+ *
+ * @throws LibGuestFSException
+ */
+ public void mount_vfs (String options, String vfstype, String device, String mountpoint)
+ throws LibGuestFSException
+ {
+ if (g == 0)
+ throw new LibGuestFSException ("mount_vfs: handle is closed");
+ _mount_vfs (g, options, vfstype, device, mountpoint);
+ }
+ private native void _mount_vfs (long g, String options, String vfstype, String device, String mountpoint)
+ throws LibGuestFSException;
+
}