1 package org.kuali.common.util.channel.model; 2 3 public enum CopyDirection { 4 // 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 5 TO_REMOTE, // 6 7 // 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) 8 FROM_REMOTE; 9 10 }