]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.security.core/src/org/argeo/osgi/auth/BundleContextCallback.java
Fix add member to LDIF group
[lgpl/argeo-commons.git] / org.argeo.security.core / src / org / argeo / osgi / auth / BundleContextCallback.java
1 package org.argeo.osgi.auth;
2
3 import javax.security.auth.callback.Callback;
4 import javax.security.auth.spi.LoginModule;
5
6 import org.osgi.framework.BundleContext;
7
8 /** Allows a {@link LoginModule} to as for a {@link BundleContext} */
9 public class BundleContextCallback implements Callback {
10 private BundleContext bundleContext;
11
12 public BundleContext getBundleContext() {
13 return bundleContext;
14 }
15
16 public void setBundleContext(BundleContext bundleContext) {
17 this.bundleContext = bundleContext;
18 }
19
20 }