blob: d2b58a52419277a0c5906a71fba1e361f2fdbeb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/**************************************************************************
* StandardClient
*
* $Revision: 1.7 $
* $Date: 2003/04/25 16:17:12 $
*
* Copyright (C) 2001 CERN - European Organization for Nuclear Research
* All rights reserved.
**************************************************************************/
package com.c2kernel.process;
abstract public class StandardClient extends AbstractMain
{
static public void main(String[] args) throws Exception {
Gateway.init(readC2KArgs(args));
//AgentProxy user = Gateway.connect("username", "password");
}
}
|