@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
39 lines (35 loc) • 1.27 kB
text/typescript
/**
* SPDX-License-Identifier: Apache-2.0
*/
import {type ResourceRef} from './resource_ref.js';
import {type ResourceName} from './resource_name.js';
import {MissingParentResourceRefError} from '../errors/missing_parent_resource_error.js';
import {MissingResourceNameError} from '../errors/missing_resource_name_error.js';
export abstract class NestedResourceRef<P extends ResourceRef<any>, T extends ResourceName> {
protected constructor(
public readonly parentRef: P,
public readonly name: T,
) {
if (!parentRef) {
throw new MissingParentResourceRefError();
}
if (!name) {
throw new MissingResourceNameError();
}
}
/**
* Compares this instance with another NestedResourceRef.
* @param other The other NestedResourceRef instance.
* @returns true if both instances have the same parent reference and name.
*/
public equals(other: NestedResourceRef<P, T>): boolean {
return other instanceof NestedResourceRef && this.parentRef.equals(other.parentRef) && this.name.equals(other.name);
}
/**
* Allows implicit conversion to a string.
* @returns The nested resource reference as a string.
*/
public toString(): string {
return `{parentRef: ${this.parentRef}, name: ${this.name}}`;
}
}