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: LdapGroupMembers.java,v 1.1 2005/08/29 13:50:28 mvaldes Exp $
26: *
27: --------------------------------------------------------------------------
28: */package hero.initiatorMapper;
29:
30: import hero.util.HeroException;
31:
32: // Use of BnLdap session Bean
33: import hero.interfaces.BnLdap;
34: import hero.interfaces.BnLdapHome;
35: import hero.interfaces.BnLdapUtil;
36: import hero.interfaces.BnProjectLocal;
37:
38: import java.util.*;
39:
40: public class LdapGroupMembers implements
41: hero.initiatorMapper.InitiatorMapperI {
42:
43: public Collection searchMembers(Object b, BnProjectLocal n,
44: String userName) throws HeroException {
45:
46: String intiatorMapperName = n.getBnInitiatorMapper().getName();
47: String projectName = n.getName();
48: //debug
49: //System.out.println("[Search Group Members] IntiatorMapper Name:"+intiatorMapperName + " - Project name = " + projectName);
50: ArrayList al = null;
51:
52: BnLdapHome home = null;
53: try {
54: home = BnLdapUtil.getHome();
55: } catch (Exception e) {
56: System.err.println("Cannot lookup BnLdapHome: " + e);
57: System.exit(2);
58: }
59:
60: BnLdap t1 = null;
61: try {
62: // logs trace
63: //System.out.println("Create a bean bnLdap");
64: t1 = home.create();
65: } catch (Exception e) {
66: throw new HeroException("Cannot create BnLdapBean : " + e);
67: }
68: try {
69: al = (ArrayList) t1.getGroupMembers(intiatorMapperName);
70: } catch (Exception e) {
71: throw new HeroException(
72: "Error getting group members for group: "
73: + intiatorMapperName + " " + e.getMessage());
74: }
75: return al;
76:
77: }
78:
79: }
|