blob: 1dfb11c125ab966ac9838df84a9d8c0674e7825f [file] [log] [blame]
Chip Boling6e27b352020-02-14 09:10:01 -06001/*
2 * Copyright (c) 2018 - present. Boling Consulting Solutions (bcsw.net)
Andrea Campanella7167ebb2020-02-24 09:56:38 +01003 * Copyright 2020-present Open Networking Foundation
Chip Boling8cdd6392022-01-27 08:43:37 -06004 *
Chip Boling6e27b352020-02-14 09:10:01 -06005 * 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
Chip Boling8cdd6392022-01-27 08:43:37 -06008 *
Chip Boling6e27b352020-02-14 09:10:01 -06009 * http://www.apache.org/licenses/LICENSE-2.0
Chip Boling8cdd6392022-01-27 08:43:37 -060010 *
Chip Boling6e27b352020-02-14 09:10:01 -060011 * 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 */
David K. Bainbridgeadf422d2021-04-09 16:06:41 +000017/*
Chip Boling6e27b352020-02-14 09:10:01 -060018 * 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// NetworkAddressClassID is the 16-bit ID for the OMCI
29// Managed entity Network address
Chip Boling610117d2021-09-09 11:24:34 -050030const NetworkAddressClassID = ClassID(137) // 0x0089
Chip Boling6e27b352020-02-14 09:10:01 -060031
32var networkaddressBME *ManagedEntityDefinition
33
Chip Boling610117d2021-09-09 11:24:34 -050034// NetworkAddress (Class ID: #137 / 0x0089)
Chip Boling6e27b352020-02-14 09:10:01 -060035// The network address ME associates a network address with security methods required to access a
36// server. It is conditionally required for ONUs that support VoIP services. The address may take
37// the form of a URL, a fully qualified path or IP address represented as an ACII string.
38//
39// If a non-OMCI interface is used to manage VoIP signalling, this ME is unnecessary.
40//
41// Instances of this ME are created and deleted by the OLT or the ONU, depending on the method used
42// and case.
43//
44// Relationships
45// Any ME that requires a network address may link to an instance of this ME.
46//
47// Attributes
48// Managed Entity Id
Chip Boling610117d2021-09-09 11:24:34 -050049// This attribute uniquely identifies each instance of this ME. Instances of this ME created
50// autonomously by the ONU have IDs in the range 0..0x7FFF. Instances created by the OLT have IDs
51// in the range 0x8000..0xFFFE. The value 0xFFFF is reserved. (R, setbycreate) (mandatory)
52// (2-bytes)
Chip Boling6e27b352020-02-14 09:10:01 -060053//
54// Security Pointer
Chip Boling610117d2021-09-09 11:24:34 -050055// This attribute points to an authentication security method ME. The authentication security
56// method indicates the username and password to be used when retrieving the network address
57// indicated by this ME. A null pointer indicates that security attributes are not defined for this
58// network address. (R,-W, setbycreate) (mandatory) (2-bytes)
Chip Boling6e27b352020-02-14 09:10:01 -060059//
60// Address Pointer
Chip Boling610117d2021-09-09 11:24:34 -050061// This attribute points to the large string ME that contains the network address. It may contain a
62// fully qualified domain name, URI or IP address. The URI may also contain a port identifier
63// (e.g., "x.y.z.com:5060"). A null pointer indicates that no network address is defined. (R,-W,
64// setbycreate) (mandatory) (2-bytes)
Chip Boling6e27b352020-02-14 09:10:01 -060065//
66type NetworkAddress struct {
67 ManagedEntityDefinition
68 Attributes AttributeValueMap
69}
70
Chip Boling8cdd6392022-01-27 08:43:37 -060071// Attribute name constants
72
73const NetworkAddress_SecurityPointer = "SecurityPointer"
74const NetworkAddress_AddressPointer = "AddressPointer"
75
Chip Boling6e27b352020-02-14 09:10:01 -060076func init() {
77 networkaddressBME = &ManagedEntityDefinition{
78 Name: "NetworkAddress",
Chip Boling8cdd6392022-01-27 08:43:37 -060079 ClassID: NetworkAddressClassID,
Chip Boling6e27b352020-02-14 09:10:01 -060080 MessageTypes: mapset.NewSetWith(
81 Create,
82 Delete,
83 Get,
84 Set,
85 ),
86 AllowedAttributeMask: 0xc000,
87 AttributeDefinitions: AttributeDefinitionMap{
Chip Boling8cdd6392022-01-27 08:43:37 -060088 0: Uint16Field(ManagedEntityID, PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0),
89 1: Uint16Field(NetworkAddress_SecurityPointer, UnsignedIntegerAttributeType, 0x8000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 1),
90 2: Uint16Field(NetworkAddress_AddressPointer, UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 2),
Chip Boling6e27b352020-02-14 09:10:01 -060091 },
92 Access: CreatedByOlt,
93 Support: UnknownSupport,
94 }
95}
96
97// NewNetworkAddress (class ID 137) creates the basic
98// Managed Entity definition that is used to validate an ME of this type that
99// is received from or transmitted to the OMCC.
100func NewNetworkAddress(params ...ParamData) (*ManagedEntity, OmciErrors) {
101 return NewManagedEntity(*networkaddressBME, params...)
102}