/// <summary>
        /// Process the response stream.
        /// </summary>
        public override void Process() {
            string localPath      = this.ReadLine();
            string repositoryPath = this.ReadLine();
            string stickyTag      = this.ReadLine();

            PathTranslator orgPath   =
                new PathTranslator (Services.Repository, repositoryPath);

            string localPathAndFilename = orgPath.LocalPathAndFilename;
            string directory = orgPath.LocalPath;

            Manager manager = 
                new Manager (Services.Repository.WorkingPath);
            manager.AddTag (Services.Repository, localPath, repositoryPath, stickyTag);

        }