com.sun.jmx.snmp.EnumRowStatus Java Examples

The following examples show how to use com.sun.jmx.snmp.EnumRowStatus. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: SnmpMibTable.java    From jdk1.8-source-analysis with Apache License 2.0 4 votes vote down vote up
/**
 * Return the RowStatus code value specified in this request.
 * <p>
 * The RowStatus code value should be one of the values defined
 * by {@link com.sun.jmx.snmp.EnumRowStatus}. These codes correspond
 * to RowStatus codes as defined in RFC 2579, plus the <i>unspecified</i>
 * value which is SNMP Runtime specific.
 * <p>
 *
 * @param req    The sub-request that must be handled by this node.
 *
 * @param rowOid The <CODE>SnmpOid</CODE> identifying the table
 *               row involved in the operation.
 *
 * @param depth  The depth reached in the OID tree.
 *
 * @return The RowStatus code specified in this request, if any:
 * <ul>
 * <li>If the specified row does not exist and this table do
 *     not use any variable to control creation/deletion of
 *     rows, then default creation mechanism is assumed and
 *     <i>createAndGo</i> is returned</li>
 * <li>Otherwise, if the row exists and this table do not use any
 *     variable to control creation/deletion of rows,
 *     <i>unspecified</i> is returned.</li>
 * <li>Otherwise, if the request does not contain the control variable,
 *     <i>unspecified</i> is returned.</li>
 * <li>Otherwise, mapRowStatus() is called to extract the RowStatus
 *     code from the SnmpVarBind that contains the control variable.</li>
 * </ul>
 *
 * @exception SnmpStatusException if the value of the control variable
 *            could not be mapped to a RowStatus code.
 *
 * @see com.sun.jmx.snmp.EnumRowStatus
 **/
protected int getRowAction(SnmpMibSubRequest req, SnmpOid rowOid,
                           int depth)
    throws SnmpStatusException {
    final boolean     isnew  = req.isNewEntry();
    final SnmpVarBind vb = req.getRowStatusVarBind();
    if (vb == null) {
        if (isnew && ! hasRowStatus())
            return EnumRowStatus.createAndGo;
        else return EnumRowStatus.unspecified;
    }

    try {
        return mapRowStatus(rowOid, vb, req.getUserData());
    } catch( SnmpStatusException x) {
        checkRowStatusFail(req, x.getStatus());
    }
    return EnumRowStatus.unspecified;
}
 
Example #2
Source File: SnmpMibTable.java    From dragonwell8_jdk with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Return the RowStatus code value specified in this request.
 * <p>
 * The RowStatus code value should be one of the values defined
 * by {@link com.sun.jmx.snmp.EnumRowStatus}. These codes correspond
 * to RowStatus codes as defined in RFC 2579, plus the <i>unspecified</i>
 * value which is SNMP Runtime specific.
 * <p>
 *
 * @param req    The sub-request that must be handled by this node.
 *
 * @param rowOid The <CODE>SnmpOid</CODE> identifying the table
 *               row involved in the operation.
 *
 * @param depth  The depth reached in the OID tree.
 *
 * @return The RowStatus code specified in this request, if any:
 * <ul>
 * <li>If the specified row does not exist and this table do
 *     not use any variable to control creation/deletion of
 *     rows, then default creation mechanism is assumed and
 *     <i>createAndGo</i> is returned</li>
 * <li>Otherwise, if the row exists and this table do not use any
 *     variable to control creation/deletion of rows,
 *     <i>unspecified</i> is returned.</li>
 * <li>Otherwise, if the request does not contain the control variable,
 *     <i>unspecified</i> is returned.</li>
 * <li>Otherwise, mapRowStatus() is called to extract the RowStatus
 *     code from the SnmpVarBind that contains the control variable.</li>
 * </ul>
 *
 * @exception SnmpStatusException if the value of the control variable
 *            could not be mapped to a RowStatus code.
 *
 * @see com.sun.jmx.snmp.EnumRowStatus
 **/
protected int getRowAction(SnmpMibSubRequest req, SnmpOid rowOid,
                           int depth)
    throws SnmpStatusException {
    final boolean     isnew  = req.isNewEntry();
    final SnmpVarBind vb = req.getRowStatusVarBind();
    if (vb == null) {
        if (isnew && ! hasRowStatus())
            return EnumRowStatus.createAndGo;
        else return EnumRowStatus.unspecified;
    }

    try {
        return mapRowStatus(rowOid, vb, req.getUserData());
    } catch( SnmpStatusException x) {
        checkRowStatusFail(req, x.getStatus());
    }
    return EnumRowStatus.unspecified;
}
 
Example #3
Source File: SnmpMibTable.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Return the RowStatus code value specified in this request.
 * <p>
 * The RowStatus code value should be one of the values defined
 * by {@link com.sun.jmx.snmp.EnumRowStatus}. These codes correspond
 * to RowStatus codes as defined in RFC 2579, plus the <i>unspecified</i>
 * value which is SNMP Runtime specific.
 * <p>
 *
 * @param req    The sub-request that must be handled by this node.
 *
 * @param rowOid The <CODE>SnmpOid</CODE> identifying the table
 *               row involved in the operation.
 *
 * @param depth  The depth reached in the OID tree.
 *
 * @return The RowStatus code specified in this request, if any:
 * <ul>
 * <li>If the specified row does not exist and this table do
 *     not use any variable to control creation/deletion of
 *     rows, then default creation mechanism is assumed and
 *     <i>createAndGo</i> is returned</li>
 * <li>Otherwise, if the row exists and this table do not use any
 *     variable to control creation/deletion of rows,
 *     <i>unspecified</i> is returned.</li>
 * <li>Otherwise, if the request does not contain the control variable,
 *     <i>unspecified</i> is returned.</li>
 * <li>Otherwise, mapRowStatus() is called to extract the RowStatus
 *     code from the SnmpVarBind that contains the control variable.</li>
 * </ul>
 *
 * @exception SnmpStatusException if the value of the control variable
 *            could not be mapped to a RowStatus code.
 *
 * @see com.sun.jmx.snmp.EnumRowStatus
 **/
protected int getRowAction(SnmpMibSubRequest req, SnmpOid rowOid,
                           int depth)
    throws SnmpStatusException {
    final boolean     isnew  = req.isNewEntry();
    final SnmpVarBind vb = req.getRowStatusVarBind();
    if (vb == null) {
        if (isnew && ! hasRowStatus())
            return EnumRowStatus.createAndGo;
        else return EnumRowStatus.unspecified;
    }

    try {
        return mapRowStatus(rowOid, vb, req.getUserData());
    } catch( SnmpStatusException x) {
        checkRowStatusFail(req, x.getStatus());
    }
    return EnumRowStatus.unspecified;
}
 
Example #4
Source File: SnmpMibTable.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Return the RowStatus code value specified in this request.
 * <p>
 * The RowStatus code value should be one of the values defined
 * by {@link com.sun.jmx.snmp.EnumRowStatus}. These codes correspond
 * to RowStatus codes as defined in RFC 2579, plus the <i>unspecified</i>
 * value which is SNMP Runtime specific.
 * <p>
 *
 * @param req    The sub-request that must be handled by this node.
 *
 * @param rowOid The <CODE>SnmpOid</CODE> identifying the table
 *               row involved in the operation.
 *
 * @param depth  The depth reached in the OID tree.
 *
 * @return The RowStatus code specified in this request, if any:
 * <ul>
 * <li>If the specified row does not exist and this table do
 *     not use any variable to control creation/deletion of
 *     rows, then default creation mechanism is assumed and
 *     <i>createAndGo</i> is returned</li>
 * <li>Otherwise, if the row exists and this table do not use any
 *     variable to control creation/deletion of rows,
 *     <i>unspecified</i> is returned.</li>
 * <li>Otherwise, if the request does not contain the control variable,
 *     <i>unspecified</i> is returned.</li>
 * <li>Otherwise, mapRowStatus() is called to extract the RowStatus
 *     code from the SnmpVarBind that contains the control variable.</li>
 * </ul>
 *
 * @exception SnmpStatusException if the value of the control variable
 *            could not be mapped to a RowStatus code.
 *
 * @see com.sun.jmx.snmp.EnumRowStatus
 **/
protected int getRowAction(SnmpMibSubRequest req, SnmpOid rowOid,
                           int depth)
    throws SnmpStatusException {
    final boolean     isnew  = req.isNewEntry();
    final SnmpVarBind vb = req.getRowStatusVarBind();
    if (vb == null) {
        if (isnew && ! hasRowStatus())
            return EnumRowStatus.createAndGo;
        else return EnumRowStatus.unspecified;
    }

    try {
        return mapRowStatus(rowOid, vb, req.getUserData());
    } catch( SnmpStatusException x) {
        checkRowStatusFail(req, x.getStatus());
    }
    return EnumRowStatus.unspecified;
}
 
Example #5
Source File: SnmpMibTable.java    From JDKSourceCode1.8 with MIT License 4 votes vote down vote up
/**
 * Return the RowStatus code value specified in this request.
 * <p>
 * The RowStatus code value should be one of the values defined
 * by {@link com.sun.jmx.snmp.EnumRowStatus}. These codes correspond
 * to RowStatus codes as defined in RFC 2579, plus the <i>unspecified</i>
 * value which is SNMP Runtime specific.
 * <p>
 *
 * @param req    The sub-request that must be handled by this node.
 *
 * @param rowOid The <CODE>SnmpOid</CODE> identifying the table
 *               row involved in the operation.
 *
 * @param depth  The depth reached in the OID tree.
 *
 * @return The RowStatus code specified in this request, if any:
 * <ul>
 * <li>If the specified row does not exist and this table do
 *     not use any variable to control creation/deletion of
 *     rows, then default creation mechanism is assumed and
 *     <i>createAndGo</i> is returned</li>
 * <li>Otherwise, if the row exists and this table do not use any
 *     variable to control creation/deletion of rows,
 *     <i>unspecified</i> is returned.</li>
 * <li>Otherwise, if the request does not contain the control variable,
 *     <i>unspecified</i> is returned.</li>
 * <li>Otherwise, mapRowStatus() is called to extract the RowStatus
 *     code from the SnmpVarBind that contains the control variable.</li>
 * </ul>
 *
 * @exception SnmpStatusException if the value of the control variable
 *            could not be mapped to a RowStatus code.
 *
 * @see com.sun.jmx.snmp.EnumRowStatus
 **/
protected int getRowAction(SnmpMibSubRequest req, SnmpOid rowOid,
                           int depth)
    throws SnmpStatusException {
    final boolean     isnew  = req.isNewEntry();
    final SnmpVarBind vb = req.getRowStatusVarBind();
    if (vb == null) {
        if (isnew && ! hasRowStatus())
            return EnumRowStatus.createAndGo;
        else return EnumRowStatus.unspecified;
    }

    try {
        return mapRowStatus(rowOid, vb, req.getUserData());
    } catch( SnmpStatusException x) {
        checkRowStatusFail(req, x.getStatus());
    }
    return EnumRowStatus.unspecified;
}
 
Example #6
Source File: SnmpMibTable.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Return the RowStatus code value specified in this request.
 * <p>
 * The RowStatus code value should be one of the values defined
 * by {@link com.sun.jmx.snmp.EnumRowStatus}. These codes correspond
 * to RowStatus codes as defined in RFC 2579, plus the <i>unspecified</i>
 * value which is SNMP Runtime specific.
 * <p>
 *
 * @param req    The sub-request that must be handled by this node.
 *
 * @param rowOid The <CODE>SnmpOid</CODE> identifying the table
 *               row involved in the operation.
 *
 * @param depth  The depth reached in the OID tree.
 *
 * @return The RowStatus code specified in this request, if any:
 * <ul>
 * <li>If the specified row does not exist and this table do
 *     not use any variable to control creation/deletion of
 *     rows, then default creation mechanism is assumed and
 *     <i>createAndGo</i> is returned</li>
 * <li>Otherwise, if the row exists and this table do not use any
 *     variable to control creation/deletion of rows,
 *     <i>unspecified</i> is returned.</li>
 * <li>Otherwise, if the request does not contain the control variable,
 *     <i>unspecified</i> is returned.</li>
 * <li>Otherwise, mapRowStatus() is called to extract the RowStatus
 *     code from the SnmpVarBind that contains the control variable.</li>
 * </ul>
 *
 * @exception SnmpStatusException if the value of the control variable
 *            could not be mapped to a RowStatus code.
 *
 * @see com.sun.jmx.snmp.EnumRowStatus
 **/
protected int getRowAction(SnmpMibSubRequest req, SnmpOid rowOid,
                           int depth)
    throws SnmpStatusException {
    final boolean     isnew  = req.isNewEntry();
    final SnmpVarBind vb = req.getRowStatusVarBind();
    if (vb == null) {
        if (isnew && ! hasRowStatus())
            return EnumRowStatus.createAndGo;
        else return EnumRowStatus.unspecified;
    }

    try {
        return mapRowStatus(rowOid, vb, req.getUserData());
    } catch( SnmpStatusException x) {
        checkRowStatusFail(req, x.getStatus());
    }
    return EnumRowStatus.unspecified;
}
 
Example #7
Source File: SnmpMibTable.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Return the RowStatus code value specified in this request.
 * <p>
 * The RowStatus code value should be one of the values defined
 * by {@link com.sun.jmx.snmp.EnumRowStatus}. These codes correspond
 * to RowStatus codes as defined in RFC 2579, plus the <i>unspecified</i>
 * value which is SNMP Runtime specific.
 * <p>
 *
 * @param req    The sub-request that must be handled by this node.
 *
 * @param rowOid The <CODE>SnmpOid</CODE> identifying the table
 *               row involved in the operation.
 *
 * @param depth  The depth reached in the OID tree.
 *
 * @return The RowStatus code specified in this request, if any:
 * <ul>
 * <li>If the specified row does not exist and this table do
 *     not use any variable to control creation/deletion of
 *     rows, then default creation mechanism is assumed and
 *     <i>createAndGo</i> is returned</li>
 * <li>Otherwise, if the row exists and this table do not use any
 *     variable to control creation/deletion of rows,
 *     <i>unspecified</i> is returned.</li>
 * <li>Otherwise, if the request does not contain the control variable,
 *     <i>unspecified</i> is returned.</li>
 * <li>Otherwise, mapRowStatus() is called to extract the RowStatus
 *     code from the SnmpVarBind that contains the control variable.</li>
 * </ul>
 *
 * @exception SnmpStatusException if the value of the control variable
 *            could not be mapped to a RowStatus code.
 *
 * @see com.sun.jmx.snmp.EnumRowStatus
 **/
protected int getRowAction(SnmpMibSubRequest req, SnmpOid rowOid,
                           int depth)
    throws SnmpStatusException {
    final boolean     isnew  = req.isNewEntry();
    final SnmpVarBind vb = req.getRowStatusVarBind();
    if (vb == null) {
        if (isnew && ! hasRowStatus())
            return EnumRowStatus.createAndGo;
        else return EnumRowStatus.unspecified;
    }

    try {
        return mapRowStatus(rowOid, vb, req.getUserData());
    } catch( SnmpStatusException x) {
        checkRowStatusFail(req, x.getStatus());
    }
    return EnumRowStatus.unspecified;
}
 
Example #8
Source File: SnmpMibTable.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Return the RowStatus code value specified in this request.
 * <p>
 * The RowStatus code value should be one of the values defined
 * by {@link com.sun.jmx.snmp.EnumRowStatus}. These codes correspond
 * to RowStatus codes as defined in RFC 2579, plus the <i>unspecified</i>
 * value which is SNMP Runtime specific.
 * <p>
 *
 * @param req    The sub-request that must be handled by this node.
 *
 * @param rowOid The <CODE>SnmpOid</CODE> identifying the table
 *               row involved in the operation.
 *
 * @param depth  The depth reached in the OID tree.
 *
 * @return The RowStatus code specified in this request, if any:
 * <ul>
 * <li>If the specified row does not exist and this table do
 *     not use any variable to control creation/deletion of
 *     rows, then default creation mechanism is assumed and
 *     <i>createAndGo</i> is returned</li>
 * <li>Otherwise, if the row exists and this table do not use any
 *     variable to control creation/deletion of rows,
 *     <i>unspecified</i> is returned.</li>
 * <li>Otherwise, if the request does not contain the control variable,
 *     <i>unspecified</i> is returned.</li>
 * <li>Otherwise, mapRowStatus() is called to extract the RowStatus
 *     code from the SnmpVarBind that contains the control variable.</li>
 * </ul>
 *
 * @exception SnmpStatusException if the value of the control variable
 *            could not be mapped to a RowStatus code.
 *
 * @see com.sun.jmx.snmp.EnumRowStatus
 **/
protected int getRowAction(SnmpMibSubRequest req, SnmpOid rowOid,
                           int depth)
    throws SnmpStatusException {
    final boolean     isnew  = req.isNewEntry();
    final SnmpVarBind vb = req.getRowStatusVarBind();
    if (vb == null) {
        if (isnew && ! hasRowStatus())
            return EnumRowStatus.createAndGo;
        else return EnumRowStatus.unspecified;
    }

    try {
        return mapRowStatus(rowOid, vb, req.getUserData());
    } catch( SnmpStatusException x) {
        checkRowStatusFail(req, x.getStatus());
    }
    return EnumRowStatus.unspecified;
}
 
Example #9
Source File: SnmpMibTable.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Return the RowStatus code value specified in this request.
 * <p>
 * The RowStatus code value should be one of the values defined
 * by {@link com.sun.jmx.snmp.EnumRowStatus}. These codes correspond
 * to RowStatus codes as defined in RFC 2579, plus the <i>unspecified</i>
 * value which is SNMP Runtime specific.
 * <p>
 *
 * @param req    The sub-request that must be handled by this node.
 *
 * @param rowOid The <CODE>SnmpOid</CODE> identifying the table
 *               row involved in the operation.
 *
 * @param depth  The depth reached in the OID tree.
 *
 * @return The RowStatus code specified in this request, if any:
 * <ul>
 * <li>If the specified row does not exist and this table do
 *     not use any variable to control creation/deletion of
 *     rows, then default creation mechanism is assumed and
 *     <i>createAndGo</i> is returned</li>
 * <li>Otherwise, if the row exists and this table do not use any
 *     variable to control creation/deletion of rows,
 *     <i>unspecified</i> is returned.</li>
 * <li>Otherwise, if the request does not contain the control variable,
 *     <i>unspecified</i> is returned.</li>
 * <li>Otherwise, mapRowStatus() is called to extract the RowStatus
 *     code from the SnmpVarBind that contains the control variable.</li>
 * </ul>
 *
 * @exception SnmpStatusException if the value of the control variable
 *            could not be mapped to a RowStatus code.
 *
 * @see com.sun.jmx.snmp.EnumRowStatus
 **/
protected int getRowAction(SnmpMibSubRequest req, SnmpOid rowOid,
                           int depth)
    throws SnmpStatusException {
    final boolean     isnew  = req.isNewEntry();
    final SnmpVarBind vb = req.getRowStatusVarBind();
    if (vb == null) {
        if (isnew && ! hasRowStatus())
            return EnumRowStatus.createAndGo;
        else return EnumRowStatus.unspecified;
    }

    try {
        return mapRowStatus(rowOid, vb, req.getUserData());
    } catch( SnmpStatusException x) {
        checkRowStatusFail(req, x.getStatus());
    }
    return EnumRowStatus.unspecified;
}
 
Example #10
Source File: SnmpMibTable.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Return the RowStatus code value specified in this request.
 * <p>
 * The RowStatus code value should be one of the values defined
 * by {@link com.sun.jmx.snmp.EnumRowStatus}. These codes correspond
 * to RowStatus codes as defined in RFC 2579, plus the <i>unspecified</i>
 * value which is SNMP Runtime specific.
 * <p>
 *
 * @param req    The sub-request that must be handled by this node.
 *
 * @param rowOid The <CODE>SnmpOid</CODE> identifying the table
 *               row involved in the operation.
 *
 * @param depth  The depth reached in the OID tree.
 *
 * @return The RowStatus code specified in this request, if any:
 * <ul>
 * <li>If the specified row does not exist and this table do
 *     not use any variable to control creation/deletion of
 *     rows, then default creation mechanism is assumed and
 *     <i>createAndGo</i> is returned</li>
 * <li>Otherwise, if the row exists and this table do not use any
 *     variable to control creation/deletion of rows,
 *     <i>unspecified</i> is returned.</li>
 * <li>Otherwise, if the request does not contain the control variable,
 *     <i>unspecified</i> is returned.</li>
 * <li>Otherwise, mapRowStatus() is called to extract the RowStatus
 *     code from the SnmpVarBind that contains the control variable.</li>
 * </ul>
 *
 * @exception SnmpStatusException if the value of the control variable
 *            could not be mapped to a RowStatus code.
 *
 * @see com.sun.jmx.snmp.EnumRowStatus
 **/
protected int getRowAction(SnmpMibSubRequest req, SnmpOid rowOid,
                           int depth)
    throws SnmpStatusException {
    final boolean     isnew  = req.isNewEntry();
    final SnmpVarBind vb = req.getRowStatusVarBind();
    if (vb == null) {
        if (isnew && ! hasRowStatus())
            return EnumRowStatus.createAndGo;
        else return EnumRowStatus.unspecified;
    }

    try {
        return mapRowStatus(rowOid, vb, req.getUserData());
    } catch( SnmpStatusException x) {
        checkRowStatusFail(req, x.getStatus());
    }
    return EnumRowStatus.unspecified;
}
 
Example #11
Source File: SnmpMibTable.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Return the RowStatus code value specified in this request.
 * <p>
 * The RowStatus code value should be one of the values defined
 * by {@link com.sun.jmx.snmp.EnumRowStatus}. These codes correspond
 * to RowStatus codes as defined in RFC 2579, plus the <i>unspecified</i>
 * value which is SNMP Runtime specific.
 * <p>
 *
 * @param req    The sub-request that must be handled by this node.
 *
 * @param rowOid The <CODE>SnmpOid</CODE> identifying the table
 *               row involved in the operation.
 *
 * @param depth  The depth reached in the OID tree.
 *
 * @return The RowStatus code specified in this request, if any:
 * <ul>
 * <li>If the specified row does not exist and this table do
 *     not use any variable to control creation/deletion of
 *     rows, then default creation mechanism is assumed and
 *     <i>createAndGo</i> is returned</li>
 * <li>Otherwise, if the row exists and this table do not use any
 *     variable to control creation/deletion of rows,
 *     <i>unspecified</i> is returned.</li>
 * <li>Otherwise, if the request does not contain the control variable,
 *     <i>unspecified</i> is returned.</li>
 * <li>Otherwise, mapRowStatus() is called to extract the RowStatus
 *     code from the SnmpVarBind that contains the control variable.</li>
 * </ul>
 *
 * @exception SnmpStatusException if the value of the control variable
 *            could not be mapped to a RowStatus code.
 *
 * @see com.sun.jmx.snmp.EnumRowStatus
 **/
protected int getRowAction(SnmpMibSubRequest req, SnmpOid rowOid,
                           int depth)
    throws SnmpStatusException {
    final boolean     isnew  = req.isNewEntry();
    final SnmpVarBind vb = req.getRowStatusVarBind();
    if (vb == null) {
        if (isnew && ! hasRowStatus())
            return EnumRowStatus.createAndGo;
        else return EnumRowStatus.unspecified;
    }

    try {
        return mapRowStatus(rowOid, vb, req.getUserData());
    } catch( SnmpStatusException x) {
        checkRowStatusFail(req, x.getStatus());
    }
    return EnumRowStatus.unspecified;
}
 
Example #12
Source File: SnmpMibTable.java    From jdk8u_jdk with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Return the RowStatus code value specified in this request.
 * <p>
 * The RowStatus code value should be one of the values defined
 * by {@link com.sun.jmx.snmp.EnumRowStatus}. These codes correspond
 * to RowStatus codes as defined in RFC 2579, plus the <i>unspecified</i>
 * value which is SNMP Runtime specific.
 * <p>
 *
 * @param req    The sub-request that must be handled by this node.
 *
 * @param rowOid The <CODE>SnmpOid</CODE> identifying the table
 *               row involved in the operation.
 *
 * @param depth  The depth reached in the OID tree.
 *
 * @return The RowStatus code specified in this request, if any:
 * <ul>
 * <li>If the specified row does not exist and this table do
 *     not use any variable to control creation/deletion of
 *     rows, then default creation mechanism is assumed and
 *     <i>createAndGo</i> is returned</li>
 * <li>Otherwise, if the row exists and this table do not use any
 *     variable to control creation/deletion of rows,
 *     <i>unspecified</i> is returned.</li>
 * <li>Otherwise, if the request does not contain the control variable,
 *     <i>unspecified</i> is returned.</li>
 * <li>Otherwise, mapRowStatus() is called to extract the RowStatus
 *     code from the SnmpVarBind that contains the control variable.</li>
 * </ul>
 *
 * @exception SnmpStatusException if the value of the control variable
 *            could not be mapped to a RowStatus code.
 *
 * @see com.sun.jmx.snmp.EnumRowStatus
 **/
protected int getRowAction(SnmpMibSubRequest req, SnmpOid rowOid,
                           int depth)
    throws SnmpStatusException {
    final boolean     isnew  = req.isNewEntry();
    final SnmpVarBind vb = req.getRowStatusVarBind();
    if (vb == null) {
        if (isnew && ! hasRowStatus())
            return EnumRowStatus.createAndGo;
        else return EnumRowStatus.unspecified;
    }

    try {
        return mapRowStatus(rowOid, vb, req.getUserData());
    } catch( SnmpStatusException x) {
        checkRowStatusFail(req, x.getStatus());
    }
    return EnumRowStatus.unspecified;
}
 
Example #13
Source File: SnmpMibTable.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Return the RowStatus code value specified in this request.
 * <p>
 * The RowStatus code value should be one of the values defined
 * by {@link com.sun.jmx.snmp.EnumRowStatus}. These codes correspond
 * to RowStatus codes as defined in RFC 2579, plus the <i>unspecified</i>
 * value which is SNMP Runtime specific.
 * <p>
 *
 * @param req    The sub-request that must be handled by this node.
 *
 * @param rowOid The <CODE>SnmpOid</CODE> identifying the table
 *               row involved in the operation.
 *
 * @param depth  The depth reached in the OID tree.
 *
 * @return The RowStatus code specified in this request, if any:
 * <ul>
 * <li>If the specified row does not exist and this table do
 *     not use any variable to control creation/deletion of
 *     rows, then default creation mechanism is assumed and
 *     <i>createAndGo</i> is returned</li>
 * <li>Otherwise, if the row exists and this table do not use any
 *     variable to control creation/deletion of rows,
 *     <i>unspecified</i> is returned.</li>
 * <li>Otherwise, if the request does not contain the control variable,
 *     <i>unspecified</i> is returned.</li>
 * <li>Otherwise, mapRowStatus() is called to extract the RowStatus
 *     code from the SnmpVarBind that contains the control variable.</li>
 * </ul>
 *
 * @exception SnmpStatusException if the value of the control variable
 *            could not be mapped to a RowStatus code.
 *
 * @see com.sun.jmx.snmp.EnumRowStatus
 **/
protected int getRowAction(SnmpMibSubRequest req, SnmpOid rowOid,
                           int depth)
    throws SnmpStatusException {
    final boolean     isnew  = req.isNewEntry();
    final SnmpVarBind vb = req.getRowStatusVarBind();
    if (vb == null) {
        if (isnew && ! hasRowStatus())
            return EnumRowStatus.createAndGo;
        else return EnumRowStatus.unspecified;
    }

    try {
        return mapRowStatus(rowOid, vb, req.getUserData());
    } catch( SnmpStatusException x) {
        checkRowStatusFail(req, x.getStatus());
    }
    return EnumRowStatus.unspecified;
}
 
Example #14
Source File: SnmpMibTable.java    From jdk8u-dev-jdk with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Return the RowStatus code value specified in this request.
 * <p>
 * The RowStatus code value should be one of the values defined
 * by {@link com.sun.jmx.snmp.EnumRowStatus}. These codes correspond
 * to RowStatus codes as defined in RFC 2579, plus the <i>unspecified</i>
 * value which is SNMP Runtime specific.
 * <p>
 *
 * @param req    The sub-request that must be handled by this node.
 *
 * @param rowOid The <CODE>SnmpOid</CODE> identifying the table
 *               row involved in the operation.
 *
 * @param depth  The depth reached in the OID tree.
 *
 * @return The RowStatus code specified in this request, if any:
 * <ul>
 * <li>If the specified row does not exist and this table do
 *     not use any variable to control creation/deletion of
 *     rows, then default creation mechanism is assumed and
 *     <i>createAndGo</i> is returned</li>
 * <li>Otherwise, if the row exists and this table do not use any
 *     variable to control creation/deletion of rows,
 *     <i>unspecified</i> is returned.</li>
 * <li>Otherwise, if the request does not contain the control variable,
 *     <i>unspecified</i> is returned.</li>
 * <li>Otherwise, mapRowStatus() is called to extract the RowStatus
 *     code from the SnmpVarBind that contains the control variable.</li>
 * </ul>
 *
 * @exception SnmpStatusException if the value of the control variable
 *            could not be mapped to a RowStatus code.
 *
 * @see com.sun.jmx.snmp.EnumRowStatus
 **/
protected int getRowAction(SnmpMibSubRequest req, SnmpOid rowOid,
                           int depth)
    throws SnmpStatusException {
    final boolean     isnew  = req.isNewEntry();
    final SnmpVarBind vb = req.getRowStatusVarBind();
    if (vb == null) {
        if (isnew && ! hasRowStatus())
            return EnumRowStatus.createAndGo;
        else return EnumRowStatus.unspecified;
    }

    try {
        return mapRowStatus(rowOid, vb, req.getUserData());
    } catch( SnmpStatusException x) {
        checkRowStatusFail(req, x.getStatus());
    }
    return EnumRowStatus.unspecified;
}