01: /**
02: *
03: * Bonita
04: * Copyright (C) 1999 Bull S.A.
05: * Bull 68 route de versailles 78434 Louveciennes Cedex France
06: * Further information: bonita@objectweb.org
07: *
08: * This library is free software; you can redistribute it and/or
09: * modify it under the terms of the GNU Lesser General Public
10: * License as published by the Free Software Foundation; either
11: * version 2.1 of the License, or any later version.
12: *
13: * This library is distributed in the hope that it will be useful,
14: * but WITHOUT ANY WARRANTY; without even the implied warranty of
15: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16: * Lesser General Public License for more details.
17: *
18: * You should have received a copy of the GNU Lesser General Public
19: * License along with this library; if not, write to the Free Software
20: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21: * USA
22: *
23: *
24: --------------------------------------------------------------------------
25: * $Id: LoadJavaProcessHook.java,v 1.1 2005/07/04 11:45:38 mvaldes Exp $
26: *
27: --------------------------------------------------------------------------
28: */package hero.client.samples;
29:
30: import javax.security.auth.login.LoginContext;
31: import hero.client.test.SimpleCallbackHandler;
32:
33: import hero.interfaces.Constants;
34: import hero.interfaces.ProjectSession;
35: import hero.interfaces.ProjectSessionHome;
36: import hero.interfaces.ProjectSessionUtil;
37:
38: import hero.interfaces.UserSession;
39: import hero.interfaces.UserSessionHome;
40: import hero.interfaces.UserSessionUtil;
41:
42: public class LoadJavaProcessHook {
43:
44: static public void main(String[] args) throws Exception {
45: // Admin login
46: char[] password = { 't', 'o', 't', 'o' };
47: SimpleCallbackHandler handler = new SimpleCallbackHandler(
48: "admin", password);
49: LoginContext lc = new LoginContext("TestClient", handler);
50: lc.login();
51:
52: ProjectSessionHome projectSessionh = ProjectSessionUtil
53: .getHome();
54: UserSessionHome usersh = UserSessionUtil.getHome();
55: UserSession usr = usersh.create();
56:
57: ProjectSession pss = projectSessionh.create();
58: pss.initModel("LoadJavaProcessHook");
59:
60: pss.addNode("node1", Constants.Nd.AND_JOIN_NODE);
61: pss.setNodeRole("node1", "admin");
62: pss.addNode("node2", Constants.Nd.AND_JOIN_NODE);
63: pss.addEdge("node1", "node2");
64: pss.addHook("hero.hook.TestProcessHook",
65: hero.interfaces.Constants.Pj.ONINSTANTIATE,
66: Constants.Hook.JAVA);
67:
68: pss.instantiateProject("LoadJavaProcessHook");
69:
70: }
71: }
|