1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
|
/*
* $Header: /cvshome/build/org.osgi.framework/src/org/osgi/framework/BundleEvent.java,v 1.19 2007/02/20 00:14:12 hargrave Exp $
*
* Copyright (c) OSGi Alliance (2000, 2007). All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.osgi.framework;
import java.util.EventObject;
/**
* An event from the Framework describing a bundle lifecycle change.
* <p>
* <code>BundleEvent</code> objects are delivered to
* <code>SynchronousBundleListener</code>s and <code>BundleListener</code>s
* when a change occurs in a bundle's lifecycle. A type code is used to identify
* the event type for future extendability.
*
* <p>
* OSGi Alliance reserves the right to extend the set of types.
*
* @Immutable
* @see BundleListener
* @see SynchronousBundleListener
* @version $Revision: 1.19 $
*/
public class BundleEvent extends EventObject {
static final long serialVersionUID = 4080640865971756012L;
/**
* Bundle that had a change occur in its lifecycle.
*/
private final Bundle bundle;
/**
* Type of bundle lifecycle change.
*/
private final int type;
/**
* The bundle has been installed.
* <p>
* The value of <code>INSTALLED</code> is 0x00000001.
*
* @see BundleContext#installBundle(String)
*/
public final static int INSTALLED = 0x00000001;
/**
* The bundle has been started.
* <p>
* The bundle's
* {@link BundleActivator#start(BundleContext) BundleActivator start} method
* has been executed if the bundle has a bundle activator class.
* <p>
* The value of <code>STARTED</code> is 0x00000002.
*
* @see Bundle#start()
*/
public final static int STARTED = 0x00000002;
/**
* The bundle has been stopped.
* <p>
* The bundle's
* {@link BundleActivator#stop(BundleContext) BundleActivator stop} method
* has been executed if the bundle has a bundle activator class.
* <p>
* The value of <code>STOPPED</code> is 0x00000004.
*
* @see Bundle#stop()
*/
public final static int STOPPED = 0x00000004;
/**
* The bundle has been updated.
* <p>
* The value of <code>UPDATED</code> is 0x00000008.
*
* @see Bundle#update()
*/
public final static int UPDATED = 0x00000008;
/**
* The bundle has been uninstalled.
* <p>
* The value of <code>UNINSTALLED</code> is 0x00000010.
*
* @see Bundle#uninstall
*/
public final static int UNINSTALLED = 0x00000010;
/**
* The bundle has been resolved.
* <p>
* The value of <code>RESOLVED</code> is 0x00000020.
*
* @see Bundle#RESOLVED
* @since 1.3
*/
public final static int RESOLVED = 0x00000020;
/**
* The bundle has been unresolved.
* <p>
* The value of <code>UNRESOLVED</code> is 0x00000040.
*
* @see Bundle#INSTALLED
* @since 1.3
*/
public final static int UNRESOLVED = 0x00000040;
/**
* The bundle is about to be activated.
* <p>
* The bundle's
* {@link BundleActivator#start(BundleContext) BundleActivator start} method
* is about to be called if the bundle has a bundle activator class. This
* event is only delivered to {@link SynchronousBundleListener}s. It is not
* delivered to <code>BundleListener</code>s.
* <p>
* The value of <code>STARTING</code> is 0x00000080.
*
* @see Bundle#start()
* @since 1.3
*/
public final static int STARTING = 0x00000080;
/**
* The bundle is about to deactivated.
* <p>
* The bundle's
* {@link BundleActivator#stop(BundleContext) BundleActivator stop} method
* is about to be called if the bundle has a bundle activator class. This
* event is only delivered to {@link SynchronousBundleListener}s. It is not
* delivered to <code>BundleListener</code>s.
* <p>
* The value of <code>STOPPING</code> is 0x00000100.
*
* @see Bundle#stop()
* @since 1.3
*/
public final static int STOPPING = 0x00000100;
/**
* The bundle will be lazily activated.
* <p>
* The bundle has a {@link Constants#ACTIVATION_LAZY lazy activation policy}
* and is waiting to be activated. It is now in the
* {@link Bundle#STARTING STARTING} state and has a valid
* <code>BundleContext</code>. This event is only delivered to
* {@link SynchronousBundleListener}s. It is not delivered to
* <code>BundleListener</code>s.
* <p>
* The value of <code>LAZY_ACTIVATION</code> is 0x00000200.
*
* @since 1.4
*/
public final static int LAZY_ACTIVATION = 0x00000200;
/**
* Creates a bundle event of the specified type.
*
* @param type The event type.
* @param bundle The bundle which had a lifecycle change.
*/
public BundleEvent(int type, Bundle bundle) {
super(bundle);
this.bundle = bundle;
this.type = type;
}
/**
* Returns the bundle which had a lifecycle change. This bundle is the
* source of the event.
*
* @return The bundle that had a change occur in its lifecycle.
*/
public Bundle getBundle() {
return bundle;
}
/**
* Returns the type of lifecyle event. The type values are:
* <ul>
* <li>{@link #INSTALLED}
* <li>{@link #RESOLVED}
* <li>{@link #LAZY_ACTIVATION}
* <li>{@link #STARTING}
* <li>{@link #STARTED}
* <li>{@link #STOPPING}
* <li>{@link #STOPPED}
* <li>{@link #UPDATED}
* <li>{@link #UNRESOLVED}
* <li>{@link #UNINSTALLED}
* </ul>
*
* @return The type of lifecycle event.
*/
public int getType() {
return type;
}
}
|