import { ASN1Element as _Element, BOOLEAN, INTEGER, OPTIONAL } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { AccessPointInformation } from "../DistributedOperations/AccessPointInformation.ta.mjs"; import { Exclusions } from "../DistributedOperations/Exclusions.ta.mjs"; import { OperationProgress } from "../DistributedOperations/OperationProgress.ta.mjs"; import { ReferenceType, _enum_for_ReferenceType } from "../DistributedOperations/ReferenceType.ta.mjs"; import { Name } from "../InformationFramework/Name.ta.mjs"; /** * @summary ContinuationReference * @description * * ### ASN.1 Definition: * * ```asn1 * ContinuationReference ::= SET { * targetObject [0] Name, * aliasedRDNs [1] INTEGER OPTIONAL, -- only present in first edition systems * operationProgress [2] OperationProgress, * rdnsResolved [3] INTEGER OPTIONAL, * referenceType [4] ReferenceType, * accessPoints [5] SET OF AccessPointInformation, * entryOnly [6] BOOLEAN DEFAULT FALSE, * exclusions [7] Exclusions OPTIONAL, * returnToDUA [8] BOOLEAN DEFAULT FALSE, * nameResolveOnMaster [9] BOOLEAN DEFAULT FALSE, * ... } * ``` * */ export declare class ContinuationReference { /** * @summary `targetObject`. * @public * @readonly */ readonly targetObject: Name; /** * @summary `aliasedRDNs`. * @public * @readonly */ readonly aliasedRDNs: OPTIONAL; /** * @summary `operationProgress`. * @public * @readonly */ readonly operationProgress: OperationProgress; /** * @summary `rdnsResolved`. * @public * @readonly */ readonly rdnsResolved: OPTIONAL; /** * @summary `referenceType`. * @public * @readonly */ readonly referenceType: ReferenceType; /** * @summary `accessPoints`. * @public * @readonly */ readonly accessPoints: AccessPointInformation[]; /** * @summary `entryOnly`. * @public * @readonly */ readonly entryOnly?: OPTIONAL; /** * @summary `exclusions`. * @public * @readonly */ readonly exclusions?: OPTIONAL; /** * @summary `returnToDUA`. * @public * @readonly */ readonly returnToDUA?: OPTIONAL; /** * @summary `nameResolveOnMaster`. * @public * @readonly */ readonly nameResolveOnMaster?: OPTIONAL; /** * @summary Extensions that are not recognized. * @public * @readonly */ readonly _unrecognizedExtensionsList: _Element[]; constructor( /** * @summary `targetObject`. * @public * @readonly */ targetObject: Name, /** * @summary `aliasedRDNs`. * @public * @readonly */ aliasedRDNs: OPTIONAL, /** * @summary `operationProgress`. * @public * @readonly */ operationProgress: OperationProgress, /** * @summary `rdnsResolved`. * @public * @readonly */ rdnsResolved: OPTIONAL, /** * @summary `referenceType`. * @public * @readonly */ referenceType: ReferenceType, /** * @summary `accessPoints`. * @public * @readonly */ accessPoints: AccessPointInformation[], /** * @summary `entryOnly`. * @public * @readonly */ entryOnly?: OPTIONAL, /** * @summary `exclusions`. * @public * @readonly */ exclusions?: OPTIONAL, /** * @summary `returnToDUA`. * @public * @readonly */ returnToDUA?: OPTIONAL, /** * @summary `nameResolveOnMaster`. * @public * @readonly */ nameResolveOnMaster?: OPTIONAL, /** * @summary Extensions that are not recognized. * @public * @readonly */ _unrecognizedExtensionsList?: _Element[]); /** * @summary Restructures an object into a ContinuationReference * @description * * This takes an `object` and converts it to a `ContinuationReference`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `ContinuationReference`. * @returns {ContinuationReference} */ static _from_object(_o: { [_K in keyof ContinuationReference]: ContinuationReference[_K]; }): ContinuationReference; /** * @summary Getter that returns the default value for `entryOnly`. * @public * @static * @method */ static get _default_value_for_entryOnly(): BOOLEAN; /** * @summary Getter that returns the default value for `returnToDUA`. * @public * @static * @method */ static get _default_value_for_returnToDUA(): BOOLEAN; /** * @summary Getter that returns the default value for `nameResolveOnMaster`. * @public * @static * @method */ static get _default_value_for_nameResolveOnMaster(): BOOLEAN; /** * @summary The enum used as the type of the component `referenceType` * @public * @static */ static _enum_for_referenceType: typeof _enum_for_ReferenceType; } /** * @summary The Leading Root Component Types of ContinuationReference * @description * * This is an array of `ComponentSpec`s that define how to decode the leading root component type list of a SET or SEQUENCE. * * @constant */ export declare const _root_component_type_list_1_spec_for_ContinuationReference: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of ContinuationReference * @description * * This is an array of `ComponentSpec`s that define how to decode the trailing root component type list of a SET or SEQUENCE. * * @constant */ export declare const _root_component_type_list_2_spec_for_ContinuationReference: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of ContinuationReference * @description * * This is an array of `ComponentSpec`s that define how to decode the extension addition component type list of a SET or SEQUENCE. * * @constant */ export declare const _extension_additions_list_spec_for_ContinuationReference: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) ContinuationReference * @function * @param {_Element} el The element being decoded. * @returns {ContinuationReference} The decoded data structure. */ export declare function _decode_ContinuationReference(el: _Element): ContinuationReference; /** * @summary Encodes a(n) ContinuationReference into an ASN.1 Element. * @function * @param value The element being encoded. * @param elGetter A function that can be used to get new ASN.1 elements. * @returns {_Element} The ContinuationReference, encoded as an ASN.1 Element. */ export declare function _encode_ContinuationReference(value: ContinuationReference, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=ContinuationReference.ta.d.mts.map