use of alma.ACS.impl.ROstringImpl in project ACS by ACS-Community.
the class BuildingImpl method initialize.
/**
* @see alma.acs.component.ComponentLifecycle#initialize(alma.acs.container.ContainerServices)
*/
public void initialize(ContainerServices containerServices) throws ComponentLifecycleException {
super.initialize(containerServices);
try {
// version
ROstringImpl versionImpl = new ROstringImpl("version", this);
ROstringPOATie versionTie = new ROstringPOATie(versionImpl);
version = ROstringHelper.narrow(this.registerProperty(versionImpl, versionTie));
} catch (Throwable th) {
throw new ComponentLifecycleException("Failed to create properties.", th);
}
}
Aggregations