src/port/refs/port.ref.ts
TBD Base class for port references.
Properties |
|
Methods |
constructor(url: string)
|
||||||||
Defined in src/port/refs/port.ref.ts:5
|
||||||||
Constructor
Parameters :
|
release |
release()
|
Defined in src/port/refs/port.ref.ts:15
|
If this port reference is being deleted/removed, call this method.
Returns :
void
|
Public url |
url:
|
Type : string
|
Defined in src/port/refs/port.ref.ts:10
|
REST URL of the port |
export class PortRef {
/**
* Constructor
* @param url REST URL of the port
*/
constructor (public url: string) { /** */ }
/**
* If this port reference is being deleted/removed, call this method.
*/
release(): void { /** base reference does nothing */ };
}