001package org.kuali.common.util.channel.model;
002
003public enum CopyDirection {
004        // We copied something (a file on the local file system, the contents of a url, a java.lang.String object) TO the file system on a remote server
005        TO_REMOTE, //
006
007        // We copied a file FROM the file system on a remote sever to somewhere (our local file system, an output stream, a java.lang.String object)
008        FROM_REMOTE;
009
010}