| 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 | |
import org.webslinger.util.TTLObject; |
| 7 | |
|
| 8 | 7125 | public abstract class AttributeValueOperation implements FileOperation { |
| 9 | |
public abstract TTLObject<Object> getAttributeValue(String name) throws FileSystemException; |
| 10 | |
|
| 11 | |
public final void process() throws FileSystemException { |
| 12 | 0 | throw new UnsupportedOperationException(); |
| 13 | |
} |
| 14 | |
} |