blob: 4aa275f5bacf04ed0ef6cc90757d932724c19578 [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// VoipApplicationServiceProfileClassID is the 16-bit ID for the OMCI
29// Managed entity VoIP application service profile
30const VoipApplicationServiceProfileClassID ClassID = ClassID(146)
31
32var voipapplicationserviceprofileBME *ManagedEntityDefinition
33
34// VoipApplicationServiceProfile (class ID #146)
35// The VoIP application service profile defines attributes of calling features used in conjunction
36// with a VoIP line service. It is optional for ONUs that support VoIP services. If a non-OMCI
37// interface is used to manage SIP for VoIP, this ME is unnecessary.
38//
39// An instance of this ME is created and deleted by the OLT. A VoIP application service profile
40// instance is needed for each unique set of profile attributes.
41//
42// Relationships
43// An instance of this ME is associated with zero or more SIP user data MEs.
44//
45// Attributes
46// Managed Entity Id
47// Managed entity ID: This attribute uniquely identifies each instance of this ME. (R, setbycreate)
48// (mandatory) (2-bytes)
49//
50// Cid Features
51// The recommended default value is 0x00. (R,-W, setbycreate) (mandatory) (1-byte)
52//
53// Call Waiting Features
54// The recommended default value is 0x00. (R,-W, setbycreate) (mandatory) (1-byte)
55//
56// Call Progress Or Transfer Features
57// The recommended default value is 0x0000. (R,-W, setbycreate) (mandatory) (2-bytes)
58//
59// Call Presentation Features
60// The recommended default value is 0x0000. (R,-W, setbycreate) (mandatory) (2-bytes)
61//
62// Direct Connect Feature
63// The recommended default value is 0x00. (R,-W, setbycreate) (mandatory) (1-byte)
64//
65// Direct Connect Uri Pointer
66// Direct connect URI pointer: This attribute points to a network address ME that specifies the URI
67// of the direct connect. If this attribute is set to a null pointer, no URI is defined. (R,-W,
68// setbycreate) (mandatory) (2-bytes)
69//
70// Bridged Line Agent Uri Pointer
71// Bridged line agent URI pointer: This attribute points to a network address ME that specifies the
72// URI of the bridged line agent. If this attribute is set to a null pointer, no URI is defined.
73// (R,-W, setbycreate) (mandatory) (2-bytes)
74//
75// Conference Factory Uri Pointer
76// Conference factory URI pointer: This attribute points to a network address ME that specifies the
77// URI of the conference factory. If this attribute is set to a null pointer, no URI is defined.
78// (R,-W, setbycreate) (mandatory) (2-bytes)
79//
80// Dial Tone Feature Delay_ W Armline Timer New
81// Dial tone feature delay/warmline timer (new): This attribute defines the warmline timer/dial
82// tone feature delay timer (seconds). The default value 0 specifies vendor-specific
83// implementation. (R,-W) (optional) (2-bytes)
84//
85type VoipApplicationServiceProfile struct {
86 ManagedEntityDefinition
87 Attributes AttributeValueMap
88}
89
90func init() {
91 voipapplicationserviceprofileBME = &ManagedEntityDefinition{
92 Name: "VoipApplicationServiceProfile",
93 ClassID: 146,
94 MessageTypes: mapset.NewSetWith(
95 Create,
96 Delete,
97 Get,
98 Set,
99 ),
100 AllowedAttributeMask: 0xff80,
101 AttributeDefinitions: AttributeDefinitionMap{
102 0: Uint16Field("ManagedEntityId", PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0),
103 1: ByteField("CidFeatures", UnsignedIntegerAttributeType, 0x8000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 1),
104 2: ByteField("CallWaitingFeatures", UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 2),
105 3: Uint16Field("CallProgressOrTransferFeatures", UnsignedIntegerAttributeType, 0x2000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 3),
106 4: Uint16Field("CallPresentationFeatures", UnsignedIntegerAttributeType, 0x1000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 4),
107 5: ByteField("DirectConnectFeature", UnsignedIntegerAttributeType, 0x0800, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 5),
108 6: Uint16Field("DirectConnectUriPointer", UnsignedIntegerAttributeType, 0x0400, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 6),
109 7: Uint16Field("BridgedLineAgentUriPointer", UnsignedIntegerAttributeType, 0x0200, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 7),
110 8: Uint16Field("ConferenceFactoryUriPointer", UnsignedIntegerAttributeType, 0x0100, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 8),
111 9: Uint16Field("DialToneFeatureDelayWArmlineTimerNew", UnsignedIntegerAttributeType, 0x0080, 0, mapset.NewSetWith(Read, Write), false, true, false, 9),
112 },
113 Access: CreatedByOlt,
114 Support: UnknownSupport,
115 }
116}
117
118// NewVoipApplicationServiceProfile (class ID 146) creates the basic
119// Managed Entity definition that is used to validate an ME of this type that
120// is received from or transmitted to the OMCC.
121func NewVoipApplicationServiceProfile(params ...ParamData) (*ManagedEntity, OmciErrors) {
122 return NewManagedEntity(*voipapplicationserviceprofileBME, params...)
123}