1 /*
2 Bloof - visualize the evolution of your software project
3 Copyright ( C ) 2003 Lukasz Pekacki <lukasz@pekacki.de>
4 http://bloof.sf.net/
5
6 This program is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License along with
15 this program; if not, write to the Free Software Foundation, Inc.,
16 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18 $RCSfile: ScmAccess.java,v $
19 Created on $Date: 2003/06/28 06:51:42 $
20 */
21 package net.sf.bloof.scm;
22
23 /***
24 * Container class for access information to the SCM system
25 * @author Lukasz Pekacki <pekacki@users.sourceforge.net>
26 * @version $Id: ScmAccess.java,v 1.9 2003/06/28 06:51:42 pekacki Exp $
27 */
28 public interface ScmAccess {
29
30 /***
31 * Returns the methd of the connection with the SCM system
32 * @return ScmConnectionMethod
33 */
34 ScmConnectionMethod getConnectionMethod();
35
36 /***
37 * Return the hostname of the SCM system
38 * @return String hostname of the SCM system
39 */
40 String getHost();
41 /***
42 * Returns the path to the logfile on the local disk
43 * @return String path to the logfile on the local disk
44 */
45 String getLogfilePath();
46 /***
47 * Returns the login of the user
48 * @return String login of the user
49 */
50 String getLogin();
51
52 /***
53 * Returns the modulname of the software project
54 * @return String modulname of the software project
55 */
56 String getModuleName();
57
58 /***
59 * Returns the name of this access
60 * @return name of this access
61 */
62 String getName();
63
64 /***
65 * Returns the password of the user
66 * @return String password of the user
67 */
68 String getPassword();
69
70 /***
71 * Returns the root directory of the SCM system
72 * @return String root directory of the SCM system
73 */
74 String getRepositoryRoot();
75 }
This page was automatically generated by Maven