Blame mibs/ietf/Finisher-MIB

Packit 022b05
Finisher-MIB DEFINITIONS ::= BEGIN
Packit 022b05
Packit 022b05
IMPORTS
Packit 022b05
    MODULE-IDENTITY, OBJECT-TYPE, Integer32, mib-2
Packit 022b05
        FROM SNMPv2-SMI                                  -- [RFC2578]
Packit 022b05
    MODULE-COMPLIANCE, OBJECT-GROUP
Packit 022b05
        FROM SNMPv2-CONF                                 -- [RFC2580]
Packit 022b05
    hrDeviceIndex
Packit 022b05
        FROM HOST-RESOURCES-MIB                          -- [RFC2790]
Packit 022b05
    PrtInputTypeTC, PrtMarkerSuppliesTypeTC
Packit 022b05
        FROM IANA-PRINTER-MIB                            -- [RFC3805]
Packit 022b05
    printmib, PrtSubUnitStatusTC, PrtLocalizedDescriptionStringTC,
Packit 022b05
        PrtMarkerSuppliesSupplyUnitTC, PrtMediaUnitTC,
Packit 022b05
        PrtCapacityUnitTC, PrtMarkerSuppliesClassTC,
Packit 022b05
        PresentOnOff, prtMIBConformance
Packit 022b05
        FROM Printer-MIB                                 -- [RFC3805]
Packit 022b05
    FinDeviceTypeTC, FinAttributeTypeTC
Packit 022b05
        FROM IANA-FINISHER-MIB;
Packit 022b05
Packit 022b05
finisherMIB MODULE-IDENTITY
Packit 022b05
    LAST-UPDATED "200406020000Z"
Packit 022b05
    ORGANIZATION "PWG IEEE/ISTO Printer Working Group"
Packit 022b05
    CONTACT-INFO
Packit 022b05
Packit 022b05
        "Harry Lewis
Packit 022b05
        IBM
Packit 022b05
        Phone (303) 924-5337
Packit 022b05
        Email: harryl@us.ibm.com
Packit 022b05
Packit 022b05
        Send comments to the printmib WG using the Finisher MIB
Packit 022b05
        Project (FIN) Mailing List:  fin@pwg.org
Packit 022b05
Packit 022b05
        For further information, access the PWG web page under 'Finisher
Packit 022b05
        MIB':      http://www.pwg.org/
Packit 022b05
Packit 022b05
        Implementers of this specification are encouraged to join the
Packit 022b05
        fin mailing list in order to participate in discussions on any
Packit 022b05
        clarifications needed and registration proposals being reviewed
Packit 022b05
        in order to achieve consensus."
Packit 022b05
    DESCRIPTION
Packit 022b05
        "The MIB module for management of printers.
Packit 022b05
         Copyright (C) The Internet Society (2004). This
Packit 022b05
         version of this MIB module was published
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
         in RFC 3806. For full legal notices see the RFC itself."
Packit 022b05
    REVISION "200406020000Z"
Packit 022b05
    DESCRIPTION
Packit 022b05
        "The original version of this MIB."
Packit 022b05
    ::= { mib-2  111 }
Packit 022b05
Packit 022b05
 -- Finisher Device Group (Mandatory)
Packit 022b05
--
Packit 022b05
-- A printer may support zero or more finishing subunits.  A
Packit 022b05
-- finishing device subunit may be associated with one or more
Packit 022b05
-- output subunits and one or more media path subunits.
Packit 022b05
Packit 022b05
finDevice  OBJECT IDENTIFIER  ::=  { printmib 30 }
Packit 022b05
Packit 022b05
finDeviceTable OBJECT-TYPE
Packit 022b05
    SYNTAX     SEQUENCE OF FinDeviceEntry
Packit 022b05
    MAX-ACCESS not-accessible
Packit 022b05
    STATUS     current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "This table defines the finishing device subunits,
Packit 022b05
       including information regarding possible configuration
Packit 022b05
       options and the status for each finisher device subunit."
Packit 022b05
    ::= { finDevice 1 }
Packit 022b05
Packit 022b05
finDeviceEntry OBJECT-TYPE
Packit 022b05
    SYNTAX      FinDeviceEntry
Packit 022b05
    MAX-ACCESS  not-accessible
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "There is an entry in the finishing device table for each
Packit 022b05
       possible finisher process.  Each individual finisher process is
Packit 022b05
       implemented by a finishing device represented in this table."
Packit 022b05
    INDEX  { hrDeviceIndex, finDeviceIndex }
Packit 022b05
    ::= { finDeviceTable 1 }
Packit 022b05
Packit 022b05
FinDeviceEntry ::= SEQUENCE {
Packit 022b05
      finDeviceIndex                 Integer32,
Packit 022b05
      finDeviceType                  FinDeviceTypeTC,
Packit 022b05
      finDevicePresentOnOff          PresentOnOff,
Packit 022b05
      finDeviceCapacityUnit          PrtCapacityUnitTC,
Packit 022b05
      finDeviceMaxCapacity           Integer32,
Packit 022b05
      finDeviceCurrentCapacity       Integer32,
Packit 022b05
      finDeviceAssociatedMediaPaths  OCTET STRING,
Packit 022b05
      finDeviceAssociatedOutputs     OCTET STRING,
Packit 022b05
      finDeviceStatus                PrtSubUnitStatusTC,
Packit 022b05
      finDeviceDescription           PrtLocalizedDescriptionStringTC
Packit 022b05
     }
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
finDeviceIndex OBJECT-TYPE
Packit 022b05
    SYNTAX      Integer32 (1..65535)
Packit 022b05
    MAX-ACCESS  not-accessible
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "A unique value used to identify a finisher process.
Packit 022b05
       Although these values may change due to a major
Packit 022b05
       reconfiguration of the printer system (e.g., the addition
Packit 022b05
       of new finishing processes), the values are normally
Packit 022b05
       expected to remain stable across successive power cycles."
Packit 022b05
    ::= { finDeviceEntry 1 }
Packit 022b05
Packit 022b05
finDeviceType OBJECT-TYPE
Packit 022b05
    SYNTAX      FinDeviceTypeTC
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "Defines the type of finishing process associated with this
Packit 022b05
       table row entry."
Packit 022b05
    ::= { finDeviceEntry 2 }
Packit 022b05
Packit 022b05
finDevicePresentOnOff OBJECT-TYPE
Packit 022b05
    SYNTAX      PresentOnOff
Packit 022b05
    MAX-ACCESS  read-write
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "Indicates if this finishing device subunit is available
Packit 022b05
       and whether the device subunit is enabled."
Packit 022b05
    DEFVAL      { notPresent }
Packit 022b05
    ::= { finDeviceEntry 3 }
Packit 022b05
Packit 022b05
finDeviceCapacityUnit OBJECT-TYPE
Packit 022b05
    SYNTAX      PrtCapacityUnitTC
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "The unit of measure for specifying the capacity of this
Packit 022b05
       finisher device subunit."
Packit 022b05
    ::= { finDeviceEntry 4 }
Packit 022b05
Packit 022b05
finDeviceMaxCapacity OBJECT-TYPE
Packit 022b05
    SYNTAX      Integer32 (-2..2147483647)
Packit 022b05
    MAX-ACCESS  read-write
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "The maximum capacity of this finisher device subunit in
Packit 022b05
       finDeviceCapacityUnits.  If the device can reliably sense
Packit 022b05
       this value, the value is sensed by the finisher device
Packit 022b05
Packit 022b05
Packit 022b05
       and is read-only: otherwise the value may be written by a
Packit 022b05
       management or control console application.  The value (-1)
Packit 022b05
       means other and specifically indicates that the device
Packit 022b05
       places no restrictions on this parameter.  The value (-2)
Packit 022b05
       means unknown."
Packit 022b05
    DEFVAL      { -2 }      -- unknown
Packit 022b05
    ::= { finDeviceEntry 5 }
Packit 022b05
Packit 022b05
finDeviceCurrentCapacity OBJECT-TYPE
Packit 022b05
    SYNTAX      Integer32 (-2..2147483647)
Packit 022b05
    MAX-ACCESS  read-write
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "The current capacity of this finisher device subunit in
Packit 022b05
       finDeviceCapacityUnits.  If the device can reliably sense
Packit 022b05
       this value, the value is sensed by the finisher and is
Packit 022b05
       read-only: otherwise the value may be written by a
Packit 022b05
       management or control console application.  The value (-1)
Packit 022b05
       means other and specifically indicates that the device
Packit 022b05
       places no restrictions on this parameter.  The value (-2)
Packit 022b05
       means unknown."
Packit 022b05
    DEFVAL      { -2 }      -- unknown
Packit 022b05
    ::= { finDeviceEntry 6 }
Packit 022b05
Packit 022b05
finDeviceAssociatedMediaPaths OBJECT-TYPE
Packit 022b05
    SYNTAX      OCTET STRING (SIZE(1..63))
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "Indicates the media paths which can supply media for this
Packit 022b05
       finisher device.  The value of this object is a bit map in an
Packit 022b05
       octet string with each position representing the value of a
Packit 022b05
       prtMediaPathIndex.  For a media path that can be a source
Packit 022b05
       for this finisher device subunit, the bit position equal
Packit 022b05
       to one less than the value of prtMediaPathIndex will be set.
Packit 022b05
       The bits are numbered starting with the most significant bit of
Packit 022b05
       the first byte being bit 0, the least significant bit of the
Packit 022b05
       first byte being bit 7, the most significant of the second byte
Packit 022b05
       being bit 8, and so on."
Packit 022b05
    ::= { finDeviceEntry 7 }
Packit 022b05
Packit 022b05
finDeviceAssociatedOutputs OBJECT-TYPE
Packit 022b05
    SYNTAX      OCTET STRING (SIZE(1..63))
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "Indicates the printer output subunits this finisher device
Packit 022b05
       subunit services.  The value of this object is a bit map in an
Packit 022b05
Packit 022b05
Packit 022b05
       octet string with each position representing the value of a
Packit 022b05
       prtOutputIndex.  For an output subunit that is serviced
Packit 022b05
       by this finisher device subunit, the bit position equal
Packit 022b05
       to one less than the value of prtOutputIndex will be set.
Packit 022b05
       The bits are numbered starting with the most significant bit of
Packit 022b05
       the first byte being bit 0, the least significant bit of the
Packit 022b05
       first byte being bit 7, the most significant of the second byte
Packit 022b05
       being bit 8, and so on."
Packit 022b05
    ::= { finDeviceEntry 8 }
Packit 022b05
Packit 022b05
finDeviceStatus OBJECT-TYPE
Packit 022b05
    SYNTAX      PrtSubUnitStatusTC
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "Indicates the current status of this finisher device
Packit 022b05
       subunit."
Packit 022b05
    DEFVAL      { 5 }      -- unknown
Packit 022b05
    ::= { finDeviceEntry 9 }
Packit 022b05
Packit 022b05
finDeviceDescription OBJECT-TYPE
Packit 022b05
    SYNTAX      PrtLocalizedDescriptionStringTC
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "A free form text description of this device subunit in the
Packit 022b05
       localization specified by prtGeneralCurrentLocalization."
Packit 022b05
    ::= { finDeviceEntry 10 }
Packit 022b05
Packit 022b05
Packit 022b05
-- Finisher Supply Group (Mandatory)
Packit 022b05
--
Packit 022b05
-- A finisher device, but not all finisher devices, may have one or more
Packit 022b05
-- supplies associated with it.  For example a finisher may use both
Packit 022b05
-- binding tape and stitching wire supplies. A finisher may also have
Packit 022b05
-- more than one source for a given type of supply e.g., multiple supply
Packit 022b05
-- sources of ink for imprinters.
Packit 022b05
Packit 022b05
finSupply  OBJECT IDENTIFIER  ::=  { printmib 31 }
Packit 022b05
Packit 022b05
finSupplyTable OBJECT-TYPE
Packit 022b05
    SYNTAX     SEQUENCE OF FinSupplyEntry
Packit 022b05
    MAX-ACCESS not-accessible
Packit 022b05
    STATUS     current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "Each unique source of supply is an entry in the finisher
Packit 022b05
       supply table. Each supply entry has its own
Packit 022b05
       characteristics associated with it such as colorant and
Packit 022b05
Packit 022b05
Packit 022b05
       current supply level."
Packit 022b05
    ::= { finSupply 1 }
Packit 022b05
Packit 022b05
finSupplyEntry OBJECT-TYPE
Packit 022b05
    SYNTAX     FinSupplyEntry
Packit 022b05
    MAX-ACCESS not-accessible
Packit 022b05
    STATUS     current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "A list of finisher devices, with their associated
Packit 022b05
       supplies and supplies characteristics."
Packit 022b05
    INDEX  { hrDeviceIndex, finSupplyIndex }
Packit 022b05
    ::= { finSupplyTable 1 }
Packit 022b05
Packit 022b05
FinSupplyEntry ::= SEQUENCE {
Packit 022b05
      finSupplyIndex               Integer32,
Packit 022b05
      finSupplyDeviceIndex         Integer32,
Packit 022b05
      finSupplyClass               PrtMarkerSuppliesClassTC,
Packit 022b05
      finSupplyType                PrtMarkerSuppliesTypeTC,
Packit 022b05
      finSupplyDescription         PrtLocalizedDescriptionStringTC,
Packit 022b05
      finSupplyUnit                PrtMarkerSuppliesSupplyUnitTC,
Packit 022b05
      finSupplyMaxCapacity         Integer32,
Packit 022b05
      finSupplyCurrentLevel        Integer32,
Packit 022b05
      finSupplyColorName           OCTET STRING
Packit 022b05
     }
Packit 022b05
Packit 022b05
finSupplyIndex OBJECT-TYPE
Packit 022b05
    SYNTAX      Integer32 (1..65535)
Packit 022b05
    MAX-ACCESS  not-accessible
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "A unique value used by a finisher to identify this supply
Packit 022b05
       container/receptacle.  Although these values may change
Packit 022b05
       due to a major reconfiguration of the finisher (e.g., the
Packit 022b05
       addition of new supply sources to the finisher), values
Packit 022b05
       are normally expected to remain stable across successive
Packit 022b05
       power cycles."
Packit 022b05
    ::= { finSupplyEntry 1 }
Packit 022b05
Packit 022b05
finSupplyDeviceIndex OBJECT-TYPE
Packit 022b05
    SYNTAX      Integer32 (0..65535)
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "The value of finDeviceIndex corresponding to the finishing
Packit 022b05
       device subunit with which this finisher supply is associated.
Packit 022b05
       The value zero indicates the associated finishing device is
Packit 022b05
       Unknown."
Packit 022b05
    ::= { finSupplyEntry 2 }
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
finSupplyClass OBJECT-TYPE
Packit 022b05
    SYNTAX      PrtMarkerSuppliesClassTC
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "This value indicates whether this supply entity
Packit 022b05
       represents a supply that is consumed or a container that
Packit 022b05
       is filled."
Packit 022b05
    ::= { finSupplyEntry 3 }
Packit 022b05
Packit 022b05
finSupplyType OBJECT-TYPE
Packit 022b05
    SYNTAX      PrtMarkerSuppliesTypeTC
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "The type of this supply."
Packit 022b05
    ::= { finSupplyEntry 4 }
Packit 022b05
Packit 022b05
finSupplyDescription OBJECT-TYPE
Packit 022b05
    SYNTAX      PrtLocalizedDescriptionStringTC
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "The description of this supply/receptacle in text useful
Packit 022b05
       for operators and management applications and in the
Packit 022b05
       localization specified by prtGeneralCurrentLocalization."
Packit 022b05
    ::= { finSupplyEntry 5 }
Packit 022b05
Packit 022b05
finSupplyUnit OBJECT-TYPE
Packit 022b05
    SYNTAX      PrtMarkerSuppliesSupplyUnitTC
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "Unit of measure of this finisher supply container or
Packit 022b05
       receptacle."
Packit 022b05
    ::= { finSupplyEntry 6 }
Packit 022b05
Packit 022b05
finSupplyMaxCapacity OBJECT-TYPE
Packit 022b05
    SYNTAX      Integer32 (-2..2147483647)
Packit 022b05
    MAX-ACCESS  read-write
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "The maximum capacity of this supply container/receptacle
Packit 022b05
       expressed in Supply Units.  If this supply container/
Packit 022b05
       receptacle can reliably sense this value, the value is
Packit 022b05
       sensed  and is read-only; otherwise the value may be
Packit 022b05
       written by a control panel or management application.  The
Packit 022b05
       value (-1) means other and places no restrictions on this
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
       parameter.  The value (-2) means unknown."
Packit 022b05
    DEFVAL      { -2 }      -- unknown
Packit 022b05
    ::= { finSupplyEntry 7 }
Packit 022b05
Packit 022b05
finSupplyCurrentLevel OBJECT-TYPE
Packit 022b05
    SYNTAX      Integer32 (-3..2147483647)
Packit 022b05
    MAX-ACCESS  read-write
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "The current level if this supply is a container; the
Packit 022b05
       remaining space if this supply is a receptacle. If this
Packit 022b05
       supply container/receptacle can reliably sense this value,
Packit 022b05
       the value is sensed and is read-only; otherwise the value
Packit 022b05
       may be written by a control panel or management
Packit 022b05
       application.  The value (-1) means other and places no
Packit 022b05
       restrictions on this parameter. The value (-2) means
Packit 022b05
       unknown.  A value of (-3) means that the printer knows there
Packit 022b05
       is some supply or remaining space."
Packit 022b05
    DEFVAL      { -2 }      -- unknown
Packit 022b05
    ::= { finSupplyEntry 8 }
Packit 022b05
Packit 022b05
Packit 022b05
--             Capacity Attribute Relationships
Packit 022b05
--
Packit 022b05
--                 MEDIA INPUT MEASUREMENT
Packit 022b05
--
Packit 022b05
--     _______ |                   |
Packit 022b05
--      |      |                   |
Packit 022b05
--      |      |                   |                   |
Packit 022b05
--      |      |_ _ _ _ _ _ _ _ _ _| ________________  |direction
Packit 022b05
--      |      |                   |      |            v
Packit 022b05
-- MaxCapacity |                   |      |
Packit 022b05
--      |      | Sheets remaining  | CurrentLevel
Packit 022b05
--      |      |                   |      |
Packit 022b05
--      v      |                   |      v
Packit 022b05
--     _______ +___________________+ _______
Packit 022b05
Packit 022b05
Packit 022b05
finSupplyColorName OBJECT-TYPE
Packit 022b05
    SYNTAX      OCTET STRING (SIZE(0..63))
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "The name of the color associated with this supply."
Packit 022b05
Packit 022b05
    REFERENCE
Packit 022b05
       "The PWG Standardized Media Names specification [PWGMEDIA],
Packit 022b05
        section 4 Media Color Names, contains the recommended values
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
        for this object. Implementers may add additional string values.
Packit 022b05
        The naming conventions in ISO 9070 are recommended in order to
Packit 022b05
        avoid potential name clashes."
Packit 022b05
    ::= { finSupplyEntry 9 }
Packit 022b05
Packit 022b05
Packit 022b05
-- Finisher Supply, Media Input Group (Conditionally Mandatory)
Packit 022b05
--
Packit 022b05
-- A finisher device may have one or more associated supply media
Packit 022b05
-- inputs.  Each entry in this table defines an input for a
Packit 022b05
-- supply media type such as inserts, covers, etc.
Packit 022b05
--
Packit 022b05
-- This group is mandatory only if the printer system contains a
Packit 022b05
-- finisher device that requires a media supply used exclusively by a
Packit 022b05
-- finishing process.  Examples are inserts or covers that are not
Packit 022b05
-- supplied by an input subunit that provides media to the marker.
Packit 022b05
Packit 022b05
finSupplyMediaInput  OBJECT IDENTIFIER  ::=  { printmib 32 }
Packit 022b05
Packit 022b05
finSupplyMediaInputTable OBJECT-TYPE
Packit 022b05
    SYNTAX     SEQUENCE OF FinSupplyMediaInputEntry
Packit 022b05
    MAX-ACCESS not-accessible
Packit 022b05
    STATUS     current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "The input subunits associated with a finisher supply media
Packit 022b05
       are each represented by an entry in this table."
Packit 022b05
::= { finSupplyMediaInput 1 }
Packit 022b05
Packit 022b05
finSupplyMediaInputEntry OBJECT-TYPE
Packit 022b05
    SYNTAX     FinSupplyMediaInputEntry
Packit 022b05
    MAX-ACCESS not-accessible
Packit 022b05
    STATUS     current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "A list of finisher supply media input subunit features and
Packit 022b05
       characteristics."
Packit 022b05
    INDEX  { hrDeviceIndex, finSupplyMediaInputIndex }
Packit 022b05
    ::= { finSupplyMediaInputTable 1 }
Packit 022b05
Packit 022b05
FinSupplyMediaInputEntry ::= SEQUENCE {
Packit 022b05
      finSupplyMediaInputIndex            Integer32,
Packit 022b05
      finSupplyMediaInputDeviceIndex      Integer32,
Packit 022b05
      finSupplyMediaInputSupplyIndex      Integer32,
Packit 022b05
      finSupplyMediaInputType             PrtInputTypeTC,
Packit 022b05
      finSupplyMediaInputDimUnit          PrtMediaUnitTC,
Packit 022b05
      finSupplyMediaInputMediaDimFeedDir  Integer32,
Packit 022b05
      finSupplyMediaInputMediaDimXFeedDir Integer32,
Packit 022b05
      finSupplyMediaInputStatus           PrtSubUnitStatusTC,
Packit 022b05
      finSupplyMediaInputMediaName      OCTET STRING,
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
      finSupplyMediaInputName           OCTET STRING,
Packit 022b05
      finSupplyMediaInputDescription    PrtLocalizedDescriptionStringTC,
Packit 022b05
      finSupplyMediaInputSecurity       PresentOnOff,
Packit 022b05
      finSupplyMediaInputMediaWeight    Integer32,
Packit 022b05
      finSupplyMediaInputMediaThickness Integer32,
Packit 022b05
      finSupplyMediaInputMediaType      OCTET STRING
Packit 022b05
     }
Packit 022b05
Packit 022b05
finSupplyMediaInputIndex OBJECT-TYPE
Packit 022b05
    SYNTAX      Integer32 (1..65535)
Packit 022b05
    MAX-ACCESS  not-accessible
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "A unique value used by a finisher to identify this supply
Packit 022b05
       media input subunit.  Although these values may change
Packit 022b05
       due to a major reconfiguration of the finisher (e.g., the
Packit 022b05
       addition of new supply media input sources to the
Packit 022b05
       finisher), values are normally expected to remain stable
Packit 022b05
       across successive power cycles."
Packit 022b05
    ::= { finSupplyMediaInputEntry 1 }
Packit 022b05
Packit 022b05
finSupplyMediaInputDeviceIndex OBJECT-TYPE
Packit 022b05
    SYNTAX      Integer32 (0..65535)
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "The value of finDeviceIndex corresponding to the finishing
Packit 022b05
       device subunit with which this finisher media supply is
Packit 022b05
       associated.  The value zero indicates the associated device
Packit 022b05
       is unknown."
Packit 022b05
    ::= { finSupplyMediaInputEntry 2 }
Packit 022b05
Packit 022b05
finSupplyMediaInputSupplyIndex OBJECT-TYPE
Packit 022b05
    SYNTAX      Integer32 (0..65535)
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "The value of finSupplyIndex corresponding to the finishing
Packit 022b05
       supply subunit with which this finisher media supply is
Packit 022b05
       associated.  The value zero indicates the associated finishing
Packit 022b05
       supply is unknown or there is no applicable finisher supply
Packit 022b05
       table entry."
Packit 022b05
    ::= { finSupplyMediaInputEntry 3 }
Packit 022b05
Packit 022b05
finSupplyMediaInputType OBJECT-TYPE
Packit 022b05
    SYNTAX      PrtInputTypeTC
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
    DESCRIPTION
Packit 022b05
      "The type of technology (discriminated primarily according
Packit 022b05
       to the feeder mechanism type) employed by the input
Packit 022b05
       subunit."
Packit 022b05
    ::= { finSupplyMediaInputEntry 4 }
Packit 022b05
Packit 022b05
finSupplyMediaInputDimUnit OBJECT-TYPE
Packit 022b05
    SYNTAX      PrtMediaUnitTC
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "The unit of measure for specifying dimensional values for
Packit 022b05
       this input device."
Packit 022b05
    ::= { finSupplyMediaInputEntry 5 }
Packit 022b05
Packit 022b05
finSupplyMediaInputMediaDimFeedDir OBJECT-TYPE
Packit 022b05
    SYNTAX      Integer32 (-2..2147483647)
Packit 022b05
    MAX-ACCESS  read-write
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "This object provides the value of the dimension in the
Packit 022b05
       feed direction of the media that is placed or will be
Packit 022b05
       placed in this input device.  Feed dimension measurements
Packit 022b05
       are taken parallel to the feed direction of the device and
Packit 022b05
       measured in finSupplyMediaInputDimUnits.  If this input
Packit 022b05
       device can reliably sense this value, the value is sensed
Packit 022b05
       and is read-only access. Otherwise the value is read-write
Packit 022b05
       access and may be written by management or control panel
Packit 022b05
       applications. The value (-1) means other and specifically
Packit 022b05
       indicates that this device places no restrictions on this
Packit 022b05
       parameter. The value (-2) indicates unknown. "
Packit 022b05
    ::= { finSupplyMediaInputEntry 6 }
Packit 022b05
Packit 022b05
finSupplyMediaInputMediaDimXFeedDir OBJECT-TYPE
Packit 022b05
    SYNTAX      Integer32 (-2..2147483647)
Packit 022b05
    MAX-ACCESS  read-write
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "This object provides the value of the dimension across the
Packit 022b05
       feed direction of the media that is placed or will be
Packit 022b05
       placed in this input device.  The cross feed direction is
Packit 022b05
       ninety degrees relative to the feed direction on this
Packit 022b05
       device and measured in finSupplyMediaInputDimUnits.  If
Packit 022b05
       this input device can reliably sense this value, the value
Packit 022b05
       is sensed and is read-only access. Otherwise the value is
Packit 022b05
       read-write access and may be written by management or
Packit 022b05
       control panel applications. The value (-1) means other and
Packit 022b05
       specifically indicates that this device places no
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
       restrictions on this parameter. The value (-2) indicates
Packit 022b05
       unknown. "
Packit 022b05
    ::= { finSupplyMediaInputEntry 7 }
Packit 022b05
Packit 022b05
finSupplyMediaInputStatus OBJECT-TYPE
Packit 022b05
    SYNTAX      PrtSubUnitStatusTC
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "This value indicates the current status of this input
Packit 022b05
       device."
Packit 022b05
    DEFVAL      { 5 }      -- unknown
Packit 022b05
    ::= { finSupplyMediaInputEntry 8 }
Packit 022b05
Packit 022b05
finSupplyMediaInputMediaName OBJECT-TYPE
Packit 022b05
    SYNTAX      OCTET STRING (SIZE(0..63))
Packit 022b05
    MAX-ACCESS  read-write
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "The name of the current media contained in this input
Packit 022b05
       device. Examples are Engineering Manual Cover, Section A Tab
Packit 022b05
       Divider or any ISO standard names."
Packit 022b05
    ::= { finSupplyMediaInputEntry 9 }
Packit 022b05
Packit 022b05
finSupplyMediaInputName OBJECT-TYPE
Packit 022b05
    SYNTAX      OCTET STRING (SIZE(0..63))
Packit 022b05
    MAX-ACCESS  read-write
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "The name assigned to this input subunit."
Packit 022b05
    ::= { finSupplyMediaInputEntry 10 }
Packit 022b05
Packit 022b05
finSupplyMediaInputDescription OBJECT-TYPE
Packit 022b05
    SYNTAX      PrtLocalizedDescriptionStringTC
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "A free form text description of this input subunit in the
Packit 022b05
       localization specified by prtGeneralCurrentLocalization."
Packit 022b05
    ::= { finSupplyMediaInputEntry 11 }
Packit 022b05
Packit 022b05
finSupplyMediaInputSecurity OBJECT-TYPE
Packit 022b05
    SYNTAX      PresentOnOff
Packit 022b05
    MAX-ACCESS  read-write
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "Indicates if this subunit has some security associated
Packit 022b05
       with it."
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
    ::= { finSupplyMediaInputEntry 12 }
Packit 022b05
Packit 022b05
finSupplyMediaInputMediaWeight OBJECT-TYPE
Packit 022b05
    SYNTAX      Integer32
Packit 022b05
    MAX-ACCESS  read-write
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "The weight of the media associated with this Input device
Packit 022b05
       in grams per meter squared.  The value (-1) means other
Packit 022b05
       and specifically indicates that the device places no
Packit 022b05
       restriction on this parameter.  The value (-2) means
Packit 022b05
       unknown.  This object can be used to calculate the weight
Packit 022b05
       of individual pages processed by the document finisher.
Packit 022b05
       This value, when multiplied by the number of pages in a
Packit 022b05
       finished set, can be used to calculate the weight of a set
Packit 022b05
       before it is inserted into a mailing envelope."
Packit 022b05
    ::= { finSupplyMediaInputEntry 13 }
Packit 022b05
Packit 022b05
finSupplyMediaInputMediaThickness OBJECT-TYPE
Packit 022b05
    SYNTAX      Integer32 (-2..2147483647)
Packit 022b05
    MAX-ACCESS  read-write
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "This object identifies the thickness of the input media
Packit 022b05
       processed by this document input subunit measured in
Packit 022b05
       micrometers.  This value may be used by devices (or
Packit 022b05
       operators) to set up proper machine tolerances for the
Packit 022b05
       feeder operation.  The value (-2) indicates that the media
Packit 022b05
       thickness is unknown or not used in the setup for this
Packit 022b05
       input subunit."
Packit 022b05
    ::= { finSupplyMediaInputEntry 14 }
Packit 022b05
Packit 022b05
finSupplyMediaInputMediaType OBJECT-TYPE
Packit 022b05
    SYNTAX      OCTET STRING (SIZE(0..63))
Packit 022b05
    MAX-ACCESS  read-write
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "The name of the type of medium associated with this input
Packit 022b05
       subunit. "
Packit 022b05
Packit 022b05
    REFERENCE
Packit 022b05
       "The PWG Standardized Media Names specification [PWGMEDIA],
Packit 022b05
        section 3 Media Type Names, contains the recommended values
Packit 022b05
        for this object. Implementers may add additional string values.
Packit 022b05
        The naming conventions in ISO 9070 are recommended in order to
Packit 022b05
        avoid potential name clashes."
Packit 022b05
    ::= { finSupplyMediaInputEntry 15 }
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
-- Finisher Device Attribute Group (Mandatory)
Packit 022b05
--
Packit 022b05
-- A finisher device subunit may have one or more parameters that
Packit 022b05
-- cannot be specified by any other objects in the MIB.  The
Packit 022b05
-- Device Attribute group facilitates the definition of these
Packit 022b05
-- parameters.  The objects which define the attributes are
Packit 022b05
-- read-write, to allow both Set and Get operations.
Packit 022b05
--
Packit 022b05
-- At least one table entry must exist for each finisher device defined
Packit 022b05
-- by the MIB.  If no other entry is possible for a finisher device, the
Packit 022b05
-- deviceName(3) attribute MUST be returned.
Packit 022b05
Packit 022b05
finDeviceAttribute  OBJECT IDENTIFIER  ::=  { printmib 33 }
Packit 022b05
Packit 022b05
finDeviceAttributeTable OBJECT-TYPE
Packit 022b05
    SYNTAX     SEQUENCE OF FinDeviceAttributeEntry
Packit 022b05
    MAX-ACCESS not-accessible
Packit 022b05
    STATUS     current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "The attribute table defines special parameters that are
Packit 022b05
       applicable only to a minority of the finisher devices.
Packit 022b05
       An attribute table entry is used, rather than unique
Packit 022b05
       objects, to minimize the number of MIB objects and to
Packit 022b05
       allow for expansion without the addition of MIB objects.
Packit 022b05
       Each finisher device is represented by a separate row
Packit 022b05
       in the device subunit attribute table."
Packit 022b05
::= { finDeviceAttribute 1 }
Packit 022b05
Packit 022b05
finDeviceAttributeEntry OBJECT-TYPE
Packit 022b05
    SYNTAX     FinDeviceAttributeEntry
Packit 022b05
    MAX-ACCESS not-accessible
Packit 022b05
    STATUS     current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "Each entry defines a finisher function parameter that
Packit 022b05
       cannot be represented by an object in the finisher
Packit 022b05
       device subunit table."
Packit 022b05
    INDEX  { hrDeviceIndex, finDeviceIndex,
Packit 022b05
             finDeviceAttributeTypeIndex,
Packit 022b05
             finDeviceAttributeInstanceIndex }
Packit 022b05
::= { finDeviceAttributeTable 1 }
Packit 022b05
Packit 022b05
FinDeviceAttributeEntry ::= SEQUENCE {
Packit 022b05
      finDeviceAttributeTypeIndex        FinAttributeTypeTC,
Packit 022b05
      finDeviceAttributeInstanceIndex    Integer32,
Packit 022b05
      finDeviceAttributeValueAsInteger   Integer32,
Packit 022b05
      finDeviceAttributeValueAsOctets    OCTET STRING
Packit 022b05
     }
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
finDeviceAttributeTypeIndex OBJECT-TYPE
Packit 022b05
    SYNTAX      FinAttributeTypeTC
Packit 022b05
    MAX-ACCESS  not-accessible
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "Defines the attribute type represented by this row."
Packit 022b05
    ::= { finDeviceAttributeEntry 1 }
Packit 022b05
Packit 022b05
finDeviceAttributeInstanceIndex OBJECT-TYPE
Packit 022b05
    SYNTAX      Integer32 (1..65535)
Packit 022b05
    MAX-ACCESS  not-accessible
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "An index that allows the discrimination of an attribute
Packit 022b05
       instance when the same attribute occurs multiple times for
Packit 022b05
       a specific instance of a finisher function.  The value of
Packit 022b05
       this index shall be 1 if only a single instance of the
Packit 022b05
       attribute occurs for the specific finisher function.
Packit 022b05
       Additional values shall be assigned in a contiguous manner."
Packit 022b05
    ::= { finDeviceAttributeEntry 2 }
Packit 022b05
Packit 022b05
finDeviceAttributeValueAsInteger OBJECT-TYPE
Packit 022b05
    SYNTAX      Integer32 (-2..2147483647)
Packit 022b05
    MAX-ACCESS  read-write
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "Defines the integer value of the attribute.  The value of
Packit 022b05
       the attribute is represented as an integer if the
Packit 022b05
       finAttributeTypeTC description for the attribute has the
Packit 022b05
       tag 'INTEGER:'.
Packit 022b05
Packit 022b05
       Depending upon the attribute enum definition, this object
Packit 022b05
       may be either an integer, a counter, an index, or an enum.
Packit 022b05
       Attributes for which the concept of an integer value is
Packit 022b05
       not meaningful SHALL return a value of -1 for this
Packit 022b05
       attribute."
Packit 022b05
    DEFVAL      { -2 }      -- unknown
Packit 022b05
    ::= { finDeviceAttributeEntry 3 }
Packit 022b05
Packit 022b05
finDeviceAttributeValueAsOctets OBJECT-TYPE
Packit 022b05
    SYNTAX      OCTET STRING (SIZE(0..63))
Packit 022b05
    MAX-ACCESS  read-write
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
      "Contains the octet string value of the attribute.  The
Packit 022b05
       value of the attribute is represented as a string if the
Packit 022b05
       finAttributeTypeTC description for the attribute has the
Packit 022b05
       tag 'OCTETS:'.
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
       Depending upon the attribute enum definition, this object
Packit 022b05
       may be either a coded character set string (text) or a
Packit 022b05
       binary octet string.  Attributes for which the concept of
Packit 022b05
       an octet string value is not meaningful SHALL contain a
Packit 022b05
       zero length string."
Packit 022b05
    DEFVAL      { ''H }      -- empty string
Packit 022b05
    ::= { finDeviceAttributeEntry 4 }
Packit 022b05
Packit 022b05
Packit 022b05
-- Conformance Information
Packit 022b05
Packit 022b05
-- compliance statements
Packit 022b05
Packit 022b05
finMIBCompliance MODULE-COMPLIANCE
Packit 022b05
    STATUS  current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "The compliance statement for agents that implement the
Packit 022b05
        finisher MIB."
Packit 022b05
    MODULE -- this module
Packit 022b05
    MANDATORY-GROUPS { finDeviceGroup, finSupplyGroup,
Packit 022b05
                       finDeviceAttributeGroup }
Packit 022b05
Packit 022b05
        OBJECT      finDevicePresentOnOff
Packit 022b05
        MIN-ACCESS  read-only
Packit 022b05
        DESCRIPTION
Packit 022b05
            "It is conformant to implement this object as read-only."
Packit 022b05
Packit 022b05
        OBJECT      finDeviceMaxCapacity
Packit 022b05
        MIN-ACCESS  read-only
Packit 022b05
        DESCRIPTION
Packit 022b05
            "It is conformant to implement this object as read-only."
Packit 022b05
Packit 022b05
        OBJECT      finDeviceCurrentCapacity
Packit 022b05
        MIN-ACCESS  read-only
Packit 022b05
        DESCRIPTION
Packit 022b05
            "It is conformant to implement this object as read-only."
Packit 022b05
Packit 022b05
        OBJECT      finSupplyMaxCapacity
Packit 022b05
        MIN-ACCESS  read-only
Packit 022b05
        DESCRIPTION
Packit 022b05
            "It is conformant to implement this object as read-only."
Packit 022b05
Packit 022b05
        OBJECT      finSupplyCurrentLevel
Packit 022b05
        MIN-ACCESS  read-only
Packit 022b05
        DESCRIPTION
Packit 022b05
            "It is conformant to implement this object as read-only."
Packit 022b05
Packit 022b05
        OBJECT      finSupplyMediaInputMediaDimFeedDir
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
        MIN-ACCESS  read-only
Packit 022b05
        DESCRIPTION
Packit 022b05
            "It is conformant to implement this object as read-only."
Packit 022b05
Packit 022b05
        OBJECT      finSupplyMediaInputMediaDimXFeedDir
Packit 022b05
        MIN-ACCESS  read-only
Packit 022b05
        DESCRIPTION
Packit 022b05
            "It is conformant to implement this object as read-only."
Packit 022b05
Packit 022b05
        OBJECT      finSupplyMediaInputMediaName
Packit 022b05
        MIN-ACCESS  read-only
Packit 022b05
        DESCRIPTION
Packit 022b05
            "It is conformant to implement this object as read-only."
Packit 022b05
Packit 022b05
        OBJECT      finSupplyMediaInputName
Packit 022b05
        MIN-ACCESS  read-only
Packit 022b05
        DESCRIPTION
Packit 022b05
            "It is conformant to implement this object as read-only."
Packit 022b05
Packit 022b05
        OBJECT      finSupplyMediaInputSecurity
Packit 022b05
        MIN-ACCESS  read-only
Packit 022b05
        DESCRIPTION
Packit 022b05
            "It is conformant to implement this object as read-only."
Packit 022b05
Packit 022b05
        OBJECT      finSupplyMediaInputMediaWeight
Packit 022b05
        MIN-ACCESS  read-only
Packit 022b05
        DESCRIPTION
Packit 022b05
            "It is conformant to implement this object as read-only."
Packit 022b05
Packit 022b05
        OBJECT      finSupplyMediaInputMediaThickness
Packit 022b05
        MIN-ACCESS  read-only
Packit 022b05
        DESCRIPTION
Packit 022b05
            "It is conformant to implement this object as read-only."
Packit 022b05
Packit 022b05
        OBJECT      finSupplyMediaInputMediaType
Packit 022b05
        MIN-ACCESS  read-only
Packit 022b05
        DESCRIPTION
Packit 022b05
            "It is conformant to implement this object as read-only."
Packit 022b05
Packit 022b05
        OBJECT      finDeviceAttributeValueAsInteger
Packit 022b05
        MIN-ACCESS  read-only
Packit 022b05
        DESCRIPTION
Packit 022b05
            "It is conformant to implement this object as read-only."
Packit 022b05
Packit 022b05
        OBJECT      finDeviceAttributeValueAsOctets
Packit 022b05
        MIN-ACCESS  read-only
Packit 022b05
        DESCRIPTION
Packit 022b05
            "It is conformant to implement this object as read-only."
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
        GROUP       finSupplyMediaInputGroup
Packit 022b05
        DESCRIPTION
Packit 022b05
            "This group is conditionally mandatory and must be included
Packit 022b05
             if a finisher device requires a media supply that is used
Packit 022b05
             exclusively by a finishing process."
Packit 022b05
Packit 022b05
    ::= { prtMIBConformance 5 }
Packit 022b05
Packit 022b05
Packit 022b05
finMIBGroups      OBJECT IDENTIFIER ::= { prtMIBConformance 6 }
Packit 022b05
Packit 022b05
finDeviceGroup OBJECT-GROUP
Packit 022b05
    OBJECTS { finDeviceType, finDevicePresentOnOff,
Packit 022b05
              finDeviceCapacityUnit, finDeviceMaxCapacity,
Packit 022b05
              finDeviceCurrentCapacity, finDeviceAssociatedMediaPaths,
Packit 022b05
              finDeviceAssociatedOutputs, finDeviceStatus,
Packit 022b05
              finDeviceDescription }
Packit 022b05
    STATUS  current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "The finisher device group."
Packit 022b05
    ::= { finMIBGroups 1 }
Packit 022b05
Packit 022b05
finSupplyGroup OBJECT-GROUP
Packit 022b05
    OBJECTS { finSupplyDeviceIndex, finSupplyClass, finSupplyType,
Packit 022b05
              finSupplyDescription, finSupplyUnit, finSupplyMaxCapacity,
Packit 022b05
              finSupplyCurrentLevel, finSupplyColorName }
Packit 022b05
    STATUS  current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "The finisher supply group."
Packit 022b05
    ::= { finMIBGroups 2 }
Packit 022b05
Packit 022b05
finSupplyMediaInputGroup OBJECT-GROUP
Packit 022b05
    OBJECTS { finSupplyMediaInputDeviceIndex,
Packit 022b05
              finSupplyMediaInputSupplyIndex, finSupplyMediaInputType,
Packit 022b05
              finSupplyMediaInputDimUnit,
Packit 022b05
              finSupplyMediaInputMediaDimFeedDir,
Packit 022b05
              finSupplyMediaInputMediaDimXFeedDir,
Packit 022b05
              finSupplyMediaInputStatus, finSupplyMediaInputMediaName,
Packit 022b05
              finSupplyMediaInputName, finSupplyMediaInputDescription,
Packit 022b05
              finSupplyMediaInputSecurity,
Packit 022b05
              finSupplyMediaInputMediaWeight,
Packit 022b05
              finSupplyMediaInputMediaThickness,
Packit 022b05
              finSupplyMediaInputMediaType }
Packit 022b05
    STATUS  current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "The finisher supply, media input group."
Packit 022b05
    ::= { finMIBGroups 3 }
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
finDeviceAttributeGroup OBJECT-GROUP
Packit 022b05
    OBJECTS { finDeviceAttributeValueAsInteger,
Packit 022b05
              finDeviceAttributeValueAsOctets }
Packit 022b05
    STATUS  current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "The finisher device attribute group.  This group is mandatory
Packit 022b05
         for a finisher device that contains an inserter subunit."
Packit 022b05
    ::= { finMIBGroups 4 }
Packit 022b05
Packit 022b05
END