]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.security.core/src/org/argeo/security/login/BundleContextCallback.java
Move Jackrabbit security model
[lgpl/argeo-commons.git] / org.argeo.security.core / src / org / argeo / security / login / BundleContextCallback.java
1 package org.argeo.security.login;
2
3 import javax.security.auth.callback.Callback;
4
5 import org.osgi.framework.BundleContext;
6
7 /** Gives access to the OSGi {@link BundleContext} */
8 public class BundleContextCallback implements Callback {
9 private BundleContext bundleContext;
10
11 public BundleContext getBundleContext() {
12 return bundleContext;
13 }
14
15 public void setBundleContext(BundleContext bundleContext) {
16 this.bundleContext = bundleContext;
17 }
18
19 }