1--
2-- CDDL HEADER START
3--
4-- The contents of this file are subject to the terms of the
5-- Common Development and Distribution License, Version 1.0 only
6-- (the "License").  You may not use this file except in compliance
7-- with the License.
8--
9-- You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10-- or http://www.opensolaris.org/os/licensing.
11-- See the License for the specific language governing permissions
12-- and limitations under the License.
13--
14-- When distributing Covered Code, include this CDDL HEADER in each
15-- file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16-- If applicable, add the following below this CDDL HEADER, with the 
17-- fields enclosed by brackets "[]" replaced with your own identifying
18-- information: Portions Copyright [yyyy] [name of copyright owner]
19--
20-- CDDL HEADER END
21--
22-- Copyright 1996 Sun Microsystems, Inc.  All Rights Reserved.
23-- Use is subject to license terms.
24--
25-- #ident	"%Z%%M%	%I%	%E% SMI"
26--
27
28   X4GRP-MIB DEFINITIONS ::= BEGIN
29
30   IMPORTS
31       ;
32
33   x4grp MODULE-IDENTITY
34       LAST-UPDATED "9508170000Z"
35       ORGANIZATION "SunSoft"
36       CONTACT-INFO
37         ""
38       DESCRIPTION
39         "The MIB module describing X.400 Groups of Users"
40       ::= { private-mibs 2 }
41
42
43--
44--	x4grpTable
45--
46
47   x4grpTable OBJECT-TYPE
48       SYNTAX SEQUENCE OF X4grpEntry
49       MAX-ACCESS not-accessible
50       STATUS current
51       DESCRIPTION
52         "The table holding information specific to a X.400 Group of Users."
53       ::= {x4grp 1}
54
55   x4grpEntry OBJECT-TYPE
56       SYNTAX X4grpEntry
57       MAX-ACCESS not-accessible
58       STATUS current
59       DESCRIPTION
60         "The entry associated with each X.400 Group of Users."
61       INDEX {x4grpIndex}
62       ::= {x4grpTable 1}
63
64   X4grpEntry ::= SEQUENCE {
65       x4grpIndex
66         INTEGER,
67       x4grpName
68         DisplayString
69   }
70
71   x4grpIndex OBJECT-TYPE
72       SYNTAX INTEGER
73       MAX-ACCESS not-accessible
74       STATUS current
75       DESCRIPTION
76         "A integer that uniquely identify an X.400 Group of Users."
77       ::= {x4grpEntry 1}
78
79   x4grpName OBJECT-TYPE
80       SYNTAX DisplayString
81       MAX-ACCESS read-only
82       STATUS current
83       DESCRIPTION
84         "The name of the X.400 Group of Users."
85       ::= {x4grpEntry 2}
86
87
88--
89--	x4grpMappingTable
90--
91
92   x4grpMappingTable OBJECT-TYPE
93       SYNTAX SEQUENCE OF X4gMappingEntry
94       MAX-ACCESS not-accessible
95       STATUS current
96       DESCRIPTION
97         "This table allows to correlate the x4grpTable, msUserTable,
98         and the mtaGroupTable."
99       ::= {x4grp 2}
100
101   x4grpMappingEntry OBJECT-TYPE
102       SYNTAX X4gMappingEntry
103       MAX-ACCESS not-accessible
104       STATUS current
105       DESCRIPTION
106         "The entry associated with each User."
107       INDEX {x4grpIndex, x4grpMappingMSIndex, x4grpMappingMTAIndex}
108       ::= {x4grpMappingTable 1}
109
110   X4gMappingEntry ::= SEQUENCE {
111       x4grpMappingMSIndex
112         INTEGER,
113       x4grpMappingMTAIndex
114         INTEGER
115   }
116
117   x4grpMappingMSIndex OBJECT-TYPE
118       SYNTAX INTEGER
119       MAX-ACCESS read-only
120       STATUS current
121       DESCRIPTION
122         "The value of msUserIndex."
123       ::= {x4grpMappingEntry 1}
124
125   x4grpMappingMTAIndex OBJECT-TYPE
126       SYNTAX INTEGER
127       MAX-ACCESS read-only
128       STATUS current
129       DESCRIPTION
130         "The value of mtaGroupIndex."
131       ::= {x4grpMappingEntry 2}
132
133   END
134
135