blob: b32aa6218f502c7b45533a78200103a89e31d0e6 [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// CesServiceProfileClassID is the 16-bit ID for the OMCI
29// Managed entity CES service profile
30const CesServiceProfileClassID ClassID = ClassID(21)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070031
32var cesserviceprofileBME *ManagedEntityDefinition
33
34// CesServiceProfile (class ID #21)
Matteo Scandolof9d43412021-01-12 11:11:34 -080035// NOTE - In [ITU-T G.984.4], this ME is called a CES service profile-G.
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070036//
37// An instance of this ME organizes data that describe the CES service functions of the ONU.
38// Instances of this ME are created and deleted by the OLT.
39//
40// Relationships
41// An instance of this ME may be associated with zero or more instances of a GEM IW TP.
42//
43// Attributes
44// Managed Entity Id
45// Managed entity ID: This attribute uniquely identifies each instance of this ME. (R, setbycreate)
Matteo Scandolof9d43412021-01-12 11:11:34 -080046// (mandatory) (2-bytes)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070047//
48// Ces Buffered Cdv Tolerance
49// CES buffered CDV tolerance: This attribute represents the duration of user data that must be
Matteo Scandolof9d43412021-01-12 11:11:34 -080050// buffered by the CES IW entity to offset packet delay variation. It is expressed in 10-us
51// increments. 75 (750-vs) is suggested as a default value. (R,-W, setbycreate) (mandatory)
52// (2-bytes)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070053//
54// Channel Associated Signalling Cas
Matteo Scandolof9d43412021-01-12 11:11:34 -080055// (R,-W, setbycreate) (optional) (1-byte)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070056//
57type CesServiceProfile struct {
58 ManagedEntityDefinition
59 Attributes AttributeValueMap
60}
61
62func init() {
63 cesserviceprofileBME = &ManagedEntityDefinition{
64 Name: "CesServiceProfile",
65 ClassID: 21,
66 MessageTypes: mapset.NewSetWith(
67 Create,
68 Delete,
69 Get,
70 Set,
71 ),
Matteo Scandolof9d43412021-01-12 11:11:34 -080072 AllowedAttributeMask: 0xc000,
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070073 AttributeDefinitions: AttributeDefinitionMap{
Matteo Scandolof9d43412021-01-12 11:11:34 -080074 0: Uint16Field("ManagedEntityId", PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0),
75 1: Uint16Field("CesBufferedCdvTolerance", UnsignedIntegerAttributeType, 0x8000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 1),
76 2: ByteField("ChannelAssociatedSignallingCas", UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, true, false, 2),
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070077 },
Matteo Scandolof9d43412021-01-12 11:11:34 -080078 Access: CreatedByOlt,
79 Support: UnknownSupport,
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070080 }
81}
82
Matteo Scandolof9d43412021-01-12 11:11:34 -080083// NewCesServiceProfile (class ID 21) creates the basic
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070084// Managed Entity definition that is used to validate an ME of this type that
Matteo Scandolof9d43412021-01-12 11:11:34 -080085// is received from or transmitted to the OMCC.
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070086func NewCesServiceProfile(params ...ParamData) (*ManagedEntity, OmciErrors) {
Matteo Scandolof9d43412021-01-12 11:11:34 -080087 return NewManagedEntity(*cesserviceprofileBME, params...)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070088}