new Bean( [json])
Parameters:
Name | Type | Argument | Description |
---|---|---|---|
json |
object |
<optional> |
All Json that is supplied in any of the Structure Js beans comes here and gets set |
Extends
Methods
-
clone()
-
Return a copy of this structure
- Inherited From:
-
getAgencyId()
-
Returns the Id of the Agency who is responsible for maintaining this structure
Returns:
The Agency Id
- Type
- string
-
getClassType( [bean])
-
Get the name of the class of this object
Parameters:
Name Type Argument Default Description bean
boolean <optional>
false If true, the word "bean" will be omitted
Throws:
-
If the first argument is supplied but not a boolean
- Type
- TypeError
Returns:
Name of the class type (constructor)
- Type
- string
Example
let myCodelist = new CodelistBean(jsonFromServer); myCodelist.getClassType(); // returns 'CodelistBean' myCodelist.getClassType(true); // returns 'Codelist'
-
-
getGuid()
-
Returns a non-editable unique Identifier for this bean, for client side only.
This GUID is generated automatically on the client on construction, the GUID is completely random and will not be the same for a structure with the same URN if the physical object differes.
Returns:
An immutable string containing the a unique identifier for this structure
- Type
- string
Example
var jsonCL = 'get JSON from server var codelist1 = new Codelist(jsonCL); var codelist2 = new Codelist(jsonCL); console.log(codelist1.getUrn() === codelist2.getUrn()); //outputs true console.log(codelist1._guid() === codelist2._guid()); //outputs false
-
getMaintainableParent()
-
Returns the bean.base.MaintainableBean to which which this structure belongs. All structures must either be a MaintainableBean or be contained within a MaintainableBean.
If this class is a MaintainableBean, then it will return itself as MaintainableBean is the outermost container for all structures
Returns:
This objects maintainable parent
Example
var annualCode = myCodeList.getItem("A"); annualCode.getMaintainableParent() // returns 'myCodeList'
-
getParent( [clazz])
-
Get the parent structure for which this structure is contained
Parameters:
Name Type Argument Description clazz
object <optional>
If supplied will walk up the parent hierarchy until the parent is of this type
Returns:
The parent for this object
- Type
- bean.base.Bean
Example
var dsd = dimension.getParent(DataStructureBean); // note that 'DataStructureBean' is not a string but a Class
-
toString()
-
Returns a string that represents this Bean.
If this Bean is an bean.base.IdentifiableBean then this will output the URN, otherwise the GUID will be returned
Returns:
The URN or GUID
- Type
- string
Example
let myCodelist = new CodelistBean(jsonFromServer); myCodelist.toString() // returns: 'urn:sdmx:org.sdmx.infomodel.codelist.Codelist=SDMX:CL_FREQ(1.0)'