blob: 1dfb11c125ab966ac9838df84a9d8c0674e7825f [file] [log] [blame]
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -07001/*
2 * Copyright (c) 2018 - present. Boling Consulting Solutions (bcsw.net)
Matteo Scandolof9d43412021-01-12 11:11:34 -08003 * Copyright 2020-present Open Networking Foundation
Elia Battiston9bfe1102022-02-03 10:38:03 +01004 *
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -07005 * 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
Elia Battiston9bfe1102022-02-03 10:38:03 +01008 *
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -07009 * http://www.apache.org/licenses/LICENSE-2.0
Elia Battiston9bfe1102022-02-03 10:38:03 +010010 *
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070011 * 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 */
Girish Gowdra161d27a2021-05-05 12:01:44 -070017/*
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070018 * 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 */
Matteo Scandolof9d43412021-01-12 11:11:34 -080023
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070024package generated
25
26import "github.com/deckarep/golang-set"
27
Matteo Scandolof9d43412021-01-12 11:11:34 -080028// NetworkAddressClassID is the 16-bit ID for the OMCI
29// Managed entity Network address
Andrea Campanella10426e22021-10-15 17:58:04 +020030const NetworkAddressClassID = ClassID(137) // 0x0089
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070031
32var networkaddressBME *ManagedEntityDefinition
33
Andrea Campanella10426e22021-10-15 17:58:04 +020034// NetworkAddress (Class ID: #137 / 0x0089)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070035// 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
Andrea Campanella10426e22021-10-15 17:58:04 +020049// 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)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070053//
54// Security Pointer
Andrea Campanella10426e22021-10-15 17:58:04 +020055// 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)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070059//
60// Address Pointer
Andrea Campanella10426e22021-10-15 17:58:04 +020061// 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)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070065//
66type NetworkAddress struct {
67 ManagedEntityDefinition
68 Attributes AttributeValueMap
69}
70
Elia Battiston9bfe1102022-02-03 10:38:03 +010071// Attribute name constants
72
73const NetworkAddress_SecurityPointer = "SecurityPointer"
74const NetworkAddress_AddressPointer = "AddressPointer"
75
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070076func init() {
77 networkaddressBME = &ManagedEntityDefinition{
78 Name: "NetworkAddress",
Elia Battiston9bfe1102022-02-03 10:38:03 +010079 ClassID: NetworkAddressClassID,
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070080 MessageTypes: mapset.NewSetWith(
81 Create,
82 Delete,
83 Get,
84 Set,
85 ),
Matteo Scandolof9d43412021-01-12 11:11:34 -080086 AllowedAttributeMask: 0xc000,
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070087 AttributeDefinitions: AttributeDefinitionMap{
Elia Battiston9bfe1102022-02-03 10:38:03 +010088 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),
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070091 },
Matteo Scandolof9d43412021-01-12 11:11:34 -080092 Access: CreatedByOlt,
93 Support: UnknownSupport,
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070094 }
95}
96
Matteo Scandolof9d43412021-01-12 11:11:34 -080097// NewNetworkAddress (class ID 137) creates the basic
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070098// Managed Entity definition that is used to validate an ME of this type that
Matteo Scandolof9d43412021-01-12 11:11:34 -080099// is received from or transmitted to the OMCC.
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700100func NewNetworkAddress(params ...ParamData) (*ManagedEntity, OmciErrors) {
Matteo Scandolof9d43412021-01-12 11:11:34 -0800101 return NewManagedEntity(*networkaddressBME, params...)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700102}