Package org.infoglue.common.util.cvsclient

Examples of org.infoglue.common.util.cvsclient.CVSRoot


   
    //----------------------
    // Parse the CVS source
    //----------------------
   
    CVSRoot cvsRoot   = new CVSRoot(CVSRoot);
   
      //---------------------
      // Encode the password
      //---------------------
     
    Scrambler scr     = StandardScrambler.getInstance();
    MyConnection conn   = new MyConnection();
   
    //---------------------
    // Open the connection
    //---------------------
   
    globalOptions.setCVSRoot(CVSRoot);
   
    conn.setUserName(cvsRoot.getUser());
    conn.setEncodedPassword(scr.scramble(password));
    conn.setHostName(cvsRoot.getHost());
    conn.setRepository(cvsRoot.getRepository());
    conn.verify();
    conn.open();
           
    //------------------------
    // Setup the client
View Full Code Here

TOP

Related Classes of org.infoglue.common.util.cvsclient.CVSRoot

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.