| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| SymlinkOperation |
|
| 1.0;1 |
| 1 | package org.webslinger.commons.vfs.operations; | |
| 2 | ||
| 3 | import org.apache.commons.vfs.FileSystemException; | |
| 4 | import org.apache.commons.vfs.operations.FileOperation; | |
| 5 | ||
| 6 | public interface SymlinkOperation extends FileOperation { | |
| 7 | String getSymlink() throws FileSystemException; | |
| 8 | boolean setSymlink(String symlink) throws FileSystemException; | |
| 9 | } |