blob: 48ae98dc87739d5361fc9ad77c8ba7f51b6a216b [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
4
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
Matteo Scandolof9d43412021-01-12 11:11:34 -08008
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -07009 * http://www.apache.org/licenses/LICENSE-2.0
Matteo Scandolof9d43412021-01-12 11:11:34 -080010
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 */
Matteo Scandolof9d43412021-01-12 11:11:34 -080017 /*
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
30const NetworkAddressClassID ClassID = ClassID(137)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070031
32var networkaddressBME *ManagedEntityDefinition
33
34// NetworkAddress (class ID #137)
35// 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
49// Managed entity ID: This attribute uniquely identifies each instance of this ME. Instances of
50// this ME created autonomously by the ONU have IDs in the range 0..0x7FFF. Instances created by
51// the OLT have IDs in the range 0x8000..0xFFFE. The value 0xFFFF is reserved. (R, setbycreate)
Matteo Scandolof9d43412021-01-12 11:11:34 -080052// (mandatory) (2-bytes)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070053//
54// Security Pointer
55// Security pointer: This attribute points to an authentication security method ME. The
56// authentication security method indicates the username and password to be used when retrieving
57// the network address indicated by this ME. A null pointer indicates that security attributes are
Matteo Scandolof9d43412021-01-12 11:11:34 -080058// not defined for this network address. (R,-W, setbycreate) (mandatory) (2-bytes)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070059//
60// Address Pointer
61// Address pointer: This attribute points to the large string ME that contains the network address.
62// It may contain a fully qualified domain name, URI or IP address. The URI may also contain a port
63// identifier (e.g., "x.y.z.com:5060"). A null pointer indicates that no network address is
Matteo Scandolof9d43412021-01-12 11:11:34 -080064// defined. (R,-W, setbycreate) (mandatory) (2-bytes)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070065//
66type NetworkAddress struct {
67 ManagedEntityDefinition
68 Attributes AttributeValueMap
69}
70
71func init() {
72 networkaddressBME = &ManagedEntityDefinition{
73 Name: "NetworkAddress",
74 ClassID: 137,
75 MessageTypes: mapset.NewSetWith(
76 Create,
77 Delete,
78 Get,
79 Set,
80 ),
Matteo Scandolof9d43412021-01-12 11:11:34 -080081 AllowedAttributeMask: 0xc000,
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070082 AttributeDefinitions: AttributeDefinitionMap{
Matteo Scandolof9d43412021-01-12 11:11:34 -080083 0: Uint16Field("ManagedEntityId", PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0),
84 1: Uint16Field("SecurityPointer", UnsignedIntegerAttributeType, 0x8000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 1),
85 2: Uint16Field("AddressPointer", UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 2),
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070086 },
Matteo Scandolof9d43412021-01-12 11:11:34 -080087 Access: CreatedByOlt,
88 Support: UnknownSupport,
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070089 }
90}
91
Matteo Scandolof9d43412021-01-12 11:11:34 -080092// NewNetworkAddress (class ID 137) creates the basic
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070093// Managed Entity definition that is used to validate an ME of this type that
Matteo Scandolof9d43412021-01-12 11:11:34 -080094// is received from or transmitted to the OMCC.
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070095func NewNetworkAddress(params ...ParamData) (*ManagedEntity, OmciErrors) {
Matteo Scandolof9d43412021-01-12 11:11:34 -080096 return NewManagedEntity(*networkaddressBME, params...)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070097}