jdk/src/share/classes/javax/management/MBeanServerNotification.java
author rriggs
Tue, 12 Nov 2013 14:03:28 -0500
changeset 21656 d4c777ccb1db
parent 5506 202f599c92aa
child 23010 6dadb192ad81
permissions -rw-r--r--
8028014: Doclint warning/error cleanup in javax.management Summary: Improve generated html by fixing doclint warnings Reviewed-by: sla, jbachorik
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4156
diff changeset
     2
 * Copyright (c) 1999, 2008, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4156
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4156
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4156
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4156
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4156
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package javax.management;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
/**
1570
4165709c91e3 5072267: A way to communicate client context such as locale to the JMX server
emcmanus
parents: 1247
diff changeset
    30
 * Represents a notification emitted by the MBean Server through the MBeanServerDelegate MBean.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * The MBean Server emits the following types of notifications: MBean registration, MBean
1570
4165709c91e3 5072267: A way to communicate client context such as locale to the JMX server
emcmanus
parents: 1247
diff changeset
    32
 * unregistration.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * <P>
1570
4165709c91e3 5072267: A way to communicate client context such as locale to the JMX server
emcmanus
parents: 1247
diff changeset
    34
 * To receive MBeanServerNotifications, you need to register a listener with
4165709c91e3 5072267: A way to communicate client context such as locale to the JMX server
emcmanus
parents: 1247
diff changeset
    35
 * the {@link MBeanServerDelegate MBeanServerDelegate} MBean
4165709c91e3 5072267: A way to communicate client context such as locale to the JMX server
emcmanus
parents: 1247
diff changeset
    36
 * that represents the MBeanServer. The ObjectName of the MBeanServerDelegate is
4165709c91e3 5072267: A way to communicate client context such as locale to the JMX server
emcmanus
parents: 1247
diff changeset
    37
 * {@link MBeanServerDelegate#DELEGATE_NAME}, which is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * <CODE>JMImplementation:type=MBeanServerDelegate</CODE>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 *
1570
4165709c91e3 5072267: A way to communicate client context such as locale to the JMX server
emcmanus
parents: 1247
diff changeset
    40
 * <p>The following code prints a message every time an MBean is registered
4165709c91e3 5072267: A way to communicate client context such as locale to the JMX server
emcmanus
parents: 1247
diff changeset
    41
 * or unregistered in the MBean Server {@code mbeanServer}:</p>
4165709c91e3 5072267: A way to communicate client context such as locale to the JMX server
emcmanus
parents: 1247
diff changeset
    42
 *
4165709c91e3 5072267: A way to communicate client context such as locale to the JMX server
emcmanus
parents: 1247
diff changeset
    43
 * <pre>
4165709c91e3 5072267: A way to communicate client context such as locale to the JMX server
emcmanus
parents: 1247
diff changeset
    44
 * private static final NotificationListener printListener = new NotificationListener() {
4165709c91e3 5072267: A way to communicate client context such as locale to the JMX server
emcmanus
parents: 1247
diff changeset
    45
 *     public void handleNotification(Notification n, Object handback) {
4165709c91e3 5072267: A way to communicate client context such as locale to the JMX server
emcmanus
parents: 1247
diff changeset
    46
 *         if (!(n instanceof MBeanServerNotification)) {
4165709c91e3 5072267: A way to communicate client context such as locale to the JMX server
emcmanus
parents: 1247
diff changeset
    47
 *             System.out.println("Ignored notification of class " + n.getClass().getName());
4165709c91e3 5072267: A way to communicate client context such as locale to the JMX server
emcmanus
parents: 1247
diff changeset
    48
 *             return;
4165709c91e3 5072267: A way to communicate client context such as locale to the JMX server
emcmanus
parents: 1247
diff changeset
    49
 *         }
4165709c91e3 5072267: A way to communicate client context such as locale to the JMX server
emcmanus
parents: 1247
diff changeset
    50
 *         MBeanServerNotification mbsn = (MBeanServerNotification) n;
4165709c91e3 5072267: A way to communicate client context such as locale to the JMX server
emcmanus
parents: 1247
diff changeset
    51
 *         String what;
4165709c91e3 5072267: A way to communicate client context such as locale to the JMX server
emcmanus
parents: 1247
diff changeset
    52
 *         if (n.getType().equals(MBeanServerNotification.REGISTRATION_NOTIFICATION))
4165709c91e3 5072267: A way to communicate client context such as locale to the JMX server
emcmanus
parents: 1247
diff changeset
    53
 *             what = "MBean registered";
4165709c91e3 5072267: A way to communicate client context such as locale to the JMX server
emcmanus
parents: 1247
diff changeset
    54
 *         else if (n.getType().equals(MBeanServerNotification.UNREGISTRATION_NOTIFICATION))
4165709c91e3 5072267: A way to communicate client context such as locale to the JMX server
emcmanus
parents: 1247
diff changeset
    55
 *             what = "MBean unregistered";
4165709c91e3 5072267: A way to communicate client context such as locale to the JMX server
emcmanus
parents: 1247
diff changeset
    56
 *         else
4165709c91e3 5072267: A way to communicate client context such as locale to the JMX server
emcmanus
parents: 1247
diff changeset
    57
 *             what = "Unknown type " + n.getType();
4165709c91e3 5072267: A way to communicate client context such as locale to the JMX server
emcmanus
parents: 1247
diff changeset
    58
 *         System.out.println("Received MBean Server notification: " + what + ": " +
4165709c91e3 5072267: A way to communicate client context such as locale to the JMX server
emcmanus
parents: 1247
diff changeset
    59
 *                 mbsn.getMBeanName());
1693
f99cde90680f 6319823: new mbean register/unregister notification for groups of mbeans
dfuchs
parents: 1571
diff changeset
    60
 *     }
1570
4165709c91e3 5072267: A way to communicate client context such as locale to the JMX server
emcmanus
parents: 1247
diff changeset
    61
 * };
4165709c91e3 5072267: A way to communicate client context such as locale to the JMX server
emcmanus
parents: 1247
diff changeset
    62
 *
4165709c91e3 5072267: A way to communicate client context such as locale to the JMX server
emcmanus
parents: 1247
diff changeset
    63
 * ...
4165709c91e3 5072267: A way to communicate client context such as locale to the JMX server
emcmanus
parents: 1247
diff changeset
    64
 *     mbeanServer.addNotificationListener(
4165709c91e3 5072267: A way to communicate client context such as locale to the JMX server
emcmanus
parents: 1247
diff changeset
    65
 *             MBeanServerDelegate.DELEGATE_NAME, printListener, null, null);
4165709c91e3 5072267: A way to communicate client context such as locale to the JMX server
emcmanus
parents: 1247
diff changeset
    66
 * </pre>
4156
acaa49a2768a 6851617: Remove JSR 255 (JMX API 2.0) from JDK 7
emcmanus
parents: 1693
diff changeset
    67
 *
1693
f99cde90680f 6319823: new mbean register/unregister notification for groups of mbeans
dfuchs
parents: 1571
diff changeset
    68
 * <p id="group">
f99cde90680f 6319823: new mbean register/unregister notification for groups of mbeans
dfuchs
parents: 1571
diff changeset
    69
 * An MBean which is not an {@link MBeanServerDelegate} may also emit
4156
acaa49a2768a 6851617: Remove JSR 255 (JMX API 2.0) from JDK 7
emcmanus
parents: 1693
diff changeset
    70
 * MBeanServerNotifications. In particular, there is a convention for
acaa49a2768a 6851617: Remove JSR 255 (JMX API 2.0) from JDK 7
emcmanus
parents: 1693
diff changeset
    71
 * MBeans to emit an MBeanServerNotification for a group of MBeans.</p>
acaa49a2768a 6851617: Remove JSR 255 (JMX API 2.0) from JDK 7
emcmanus
parents: 1693
diff changeset
    72
 *
acaa49a2768a 6851617: Remove JSR 255 (JMX API 2.0) from JDK 7
emcmanus
parents: 1693
diff changeset
    73
 * <p>An MBeanServerNotification emitted to denote the registration or
1693
f99cde90680f 6319823: new mbean register/unregister notification for groups of mbeans
dfuchs
parents: 1571
diff changeset
    74
 * unregistration of a group of MBeans has the following characteristics:
f99cde90680f 6319823: new mbean register/unregister notification for groups of mbeans
dfuchs
parents: 1571
diff changeset
    75
 * <ul><li>Its {@linkplain Notification#getType() notification type} is
f99cde90680f 6319823: new mbean register/unregister notification for groups of mbeans
dfuchs
parents: 1571
diff changeset
    76
 *     {@code "JMX.mbean.registered.group"} or
f99cde90680f 6319823: new mbean register/unregister notification for groups of mbeans
dfuchs
parents: 1571
diff changeset
    77
 *     {@code "JMX.mbean.unregistered.group"}, which can also be written {@link
f99cde90680f 6319823: new mbean register/unregister notification for groups of mbeans
dfuchs
parents: 1571
diff changeset
    78
 *     MBeanServerNotification#REGISTRATION_NOTIFICATION}{@code + ".group"} or
f99cde90680f 6319823: new mbean register/unregister notification for groups of mbeans
dfuchs
parents: 1571
diff changeset
    79
 *     {@link
f99cde90680f 6319823: new mbean register/unregister notification for groups of mbeans
dfuchs
parents: 1571
diff changeset
    80
 *     MBeanServerNotification#UNREGISTRATION_NOTIFICATION}{@code + ".group"}.
f99cde90680f 6319823: new mbean register/unregister notification for groups of mbeans
dfuchs
parents: 1571
diff changeset
    81
 * </li>
f99cde90680f 6319823: new mbean register/unregister notification for groups of mbeans
dfuchs
parents: 1571
diff changeset
    82
 * <li>Its {@linkplain #getMBeanName() MBean name} is an ObjectName pattern
f99cde90680f 6319823: new mbean register/unregister notification for groups of mbeans
dfuchs
parents: 1571
diff changeset
    83
 *     that selects the set (or a superset) of the MBeans being registered
f99cde90680f 6319823: new mbean register/unregister notification for groups of mbeans
dfuchs
parents: 1571
diff changeset
    84
 *     or unregistered</li>
f99cde90680f 6319823: new mbean register/unregister notification for groups of mbeans
dfuchs
parents: 1571
diff changeset
    85
 * <li>Its {@linkplain Notification#getUserData() user data} can optionally
f99cde90680f 6319823: new mbean register/unregister notification for groups of mbeans
dfuchs
parents: 1571
diff changeset
    86
 *     be set to an array of ObjectNames containing the names of all MBeans
f99cde90680f 6319823: new mbean register/unregister notification for groups of mbeans
dfuchs
parents: 1571
diff changeset
    87
 *     being registered or unregistered.</li>
f99cde90680f 6319823: new mbean register/unregister notification for groups of mbeans
dfuchs
parents: 1571
diff changeset
    88
 * </ul>
21656
d4c777ccb1db 8028014: Doclint warning/error cleanup in javax.management
rriggs
parents: 5506
diff changeset
    89
 *
1693
f99cde90680f 6319823: new mbean register/unregister notification for groups of mbeans
dfuchs
parents: 1571
diff changeset
    90
 * <p>
f99cde90680f 6319823: new mbean register/unregister notification for groups of mbeans
dfuchs
parents: 1571
diff changeset
    91
 * MBeans which emit these group registration/unregistration notifications will
f99cde90680f 6319823: new mbean register/unregister notification for groups of mbeans
dfuchs
parents: 1571
diff changeset
    92
 * declare them in their {@link MBeanInfo#getNotifications()
f99cde90680f 6319823: new mbean register/unregister notification for groups of mbeans
dfuchs
parents: 1571
diff changeset
    93
 * MBeanNotificationInfo}.
f99cde90680f 6319823: new mbean register/unregister notification for groups of mbeans
dfuchs
parents: 1571
diff changeset
    94
 * </p>
1571
421ef5172dd3 6336968: Methods to convert AttributeList to/from Map
emcmanus
parents: 1570
diff changeset
    95
 *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 */
1003
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
    98
public class MBeanServerNotification extends Notification {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
1003
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   101
    /* Serial version */
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   102
    private static final long serialVersionUID = 2876477500475969677L;
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   103
    /**
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   104
     * Notification type denoting that an MBean has been registered.
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   105
     * Value is "JMX.mbean.registered".
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   106
     */
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   107
    public static final String REGISTRATION_NOTIFICATION =
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   108
            "JMX.mbean.registered";
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   109
    /**
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   110
     * Notification type denoting that an MBean has been unregistered.
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   111
     * Value is "JMX.mbean.unregistered".
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   112
     */
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   113
    public static final String UNREGISTRATION_NOTIFICATION =
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   114
            "JMX.mbean.unregistered";
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   115
    /**
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   116
     * @serial The object names of the MBeans concerned by this notification
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   117
     */
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   118
    private final ObjectName objectName;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
1003
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   120
    /**
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   121
     * Creates an MBeanServerNotification object specifying object names of
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   122
     * the MBeans that caused the notification and the specified notification
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   123
     * type.
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   124
     *
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   125
     * @param type A string denoting the type of the
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   126
     * notification. Set it to one these values: {@link
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   127
     * #REGISTRATION_NOTIFICATION}, {@link
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   128
     * #UNREGISTRATION_NOTIFICATION}.
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   129
     * @param source The MBeanServerNotification object responsible
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   130
     * for forwarding MBean server notification.
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   131
     * @param sequenceNumber A sequence number that can be used to order
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   132
     * received notifications.
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   133
     * @param objectName The object name of the MBean that caused the
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   134
     * notification.
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   135
     *
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   136
     */
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   137
    public MBeanServerNotification(String type, Object source,
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   138
            long sequenceNumber, ObjectName objectName) {
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   139
        super(type, source, sequenceNumber);
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   140
        this.objectName = objectName;
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   141
    }
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   142
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   143
    /**
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   144
     * Returns the  object name of the MBean that caused the notification.
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   145
     *
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   146
     * @return the object name of the MBean that caused the notification.
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   147
     */
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   148
    public ObjectName getMBeanName() {
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   149
        return objectName;
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   150
    }
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   151
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   152
    @Override
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   153
    public String toString() {
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   154
        return super.toString() + "[mbeanName=" + objectName + "]";
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   155
b2f6b7e00c29 6689505: Improve MBeanServerNotification.toString
dfuchs
parents: 2
diff changeset
   156
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
 }