jdk/src/share/classes/javax/management/PersistentMBean.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: 2
diff changeset
     2
 * Copyright (c) 2000, 2005, 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: 2
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: 2
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: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
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
 * @author    IBM Corp.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * Copyright IBM Corp. 1999-2000.  All rights reserved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
package javax.management;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import javax.management.MBeanException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import javax.management.RuntimeOperationsException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import javax.management.InstanceNotFoundException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 *  This class is the interface to be implemented by MBeans that are meant to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 *  persistent.  MBeans supporting this interface should call the load method during
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 *  construction in order to prime the MBean from the persistent store.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 *  In the case of a ModelMBean, the store method should be called by the MBeanServer based on the descriptors in
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 *  the ModelMBean or by the MBean itself during normal processing of the ModelMBean.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
public interface PersistentMBean {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
     * Instantiates thisMBean instance with the data found for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
     * the MBean in the persistent store.  The data loaded could include
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
     * attribute and operation values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
     * This method should be called during construction or initialization of this instance,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
     * and before the MBean is registered with the MBeanServer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
     * @exception MBeanException Wraps another exception or persistence is not supported
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
     * @exception RuntimeOperationsException Wraps exceptions from the persistence mechanism
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
     * @exception InstanceNotFoundException Could not find or load this MBean from persistent
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
     *                                      storage
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    public void load()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    throws MBeanException, RuntimeOperationsException, InstanceNotFoundException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     * Captures the current state of this MBean instance and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     * writes it out to the persistent store.  The state stored could include
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     * attribute and operation values. If one of these methods of persistence is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     * not supported a "serviceNotFound" exception will be thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     * <P>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
     * Persistence policy from the MBean and attribute descriptor is used to guide execution
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     * of this method. The MBean should be stored if 'persistPolicy' field is:
21656
d4c777ccb1db 8028014: Doclint warning/error cleanup in javax.management
rriggs
parents: 5506
diff changeset
    73
     * <PRE>{@literal  != "never"
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     *   = "always"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     *   = "onTimer" and now > 'lastPersistTime' + 'persistPeriod'
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
     *   = "NoMoreOftenThan" and now > 'lastPersistTime' + 'persistPeriod'
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
     *   = "onUnregister"
21656
d4c777ccb1db 8028014: Doclint warning/error cleanup in javax.management
rriggs
parents: 5506
diff changeset
    78
     * }</PRE>
d4c777ccb1db 8028014: Doclint warning/error cleanup in javax.management
rriggs
parents: 5506
diff changeset
    79
     * <p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     * Do not store the MBean if 'persistPolicy' field is:
21656
d4c777ccb1db 8028014: Doclint warning/error cleanup in javax.management
rriggs
parents: 5506
diff changeset
    81
     * <PRE>{@literal
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     *    = "never"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     *    = "onUpdate"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     *    = "onTimer" && now < 'lastPersistTime' + 'persistPeriod'
21656
d4c777ccb1db 8028014: Doclint warning/error cleanup in javax.management
rriggs
parents: 5506
diff changeset
    85
     * }</PRE>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     * @exception MBeanException Wraps another exception or persistence is not supported
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     * @exception RuntimeOperationsException Wraps exceptions from the persistence mechanism
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     * @exception InstanceNotFoundException Could not find/access the persistent store
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    public void store()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    throws MBeanException, RuntimeOperationsException, InstanceNotFoundException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
}