blob: a399351fe289ba274bbd8230195883069812ece9 [file] [log] [blame]
Matteo Scandolof9d43412021-01-12 11:11:34 -08001/*
2 * Copyright (c) 2018 - present. Boling Consulting Solutions (bcsw.net)
3 * Copyright 2020-present Open Networking Foundation
4
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8
9 * http://www.apache.org/licenses/LICENSE-2.0
10
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17 /*
18 * NOTE: This file was generated, manual edits will be overwritten!
19 *
20 * Generated by 'goCodeGenerator.py':
21 * https://github.com/cboling/OMCI-parser/README.md
22 */
23
24package generated
25
26import "github.com/deckarep/golang-set"
27
28// XdslPsdMaskProfileClassID is the 16-bit ID for the OMCI
29// Managed entity xDSL PSD mask profile
30const XdslPsdMaskProfileClassID ClassID = ClassID(110)
31
32var xdslpsdmaskprofileBME *ManagedEntityDefinition
33
34// XdslPsdMaskProfile (class ID #110)
35// This ME contains a PSD mask profile for an xDSL UNI. An instance of this ME is created and
36// deleted by the OLT.
37//
38// Relationships
39// An instance of this ME may be associated with zero or more instances of the PPTP xDSL UNI part
40// 1.
41//
42// Attributes
43// Managed Entity Id
44// Managed entity ID: This attribute uniquely identifies each instance of this ME. The value 0 is
45// reserved. (R, setbycreate) (mandatory) (2-bytes)
46//
47// Psd Mask Table
48// (R,-W) (mandatory) (4 * N bytes where N is the number of breakpoints)
49//
50// Mask Valid
51// (R,-W) (mandatory) (1-byte)
52//
53type XdslPsdMaskProfile struct {
54 ManagedEntityDefinition
55 Attributes AttributeValueMap
56}
57
58func init() {
59 xdslpsdmaskprofileBME = &ManagedEntityDefinition{
60 Name: "XdslPsdMaskProfile",
61 ClassID: 110,
62 MessageTypes: mapset.NewSetWith(
63 Create,
64 Delete,
65 Get,
66 GetNext,
67 Set,
68 ),
69 AllowedAttributeMask: 0xc000,
70 AttributeDefinitions: AttributeDefinitionMap{
71 0: Uint16Field("ManagedEntityId", PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0),
72 1: TableField("PsdMaskTable", TableAttributeType, 0x8000, TableInfo{nil, 4}, mapset.NewSetWith(Read, Write), false, false, false, 1),
73 2: ByteField("MaskValid", UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, Write), false, false, false, 2),
74 },
75 Access: CreatedByOlt,
76 Support: UnknownSupport,
77 }
78}
79
80// NewXdslPsdMaskProfile (class ID 110) creates the basic
81// Managed Entity definition that is used to validate an ME of this type that
82// is received from or transmitted to the OMCC.
83func NewXdslPsdMaskProfile(params ...ParamData) (*ManagedEntity, OmciErrors) {
84 return NewManagedEntity(*xdslpsdmaskprofileBME, params...)
85}