Search in sources :

Example 1 with ROstringPOATie

use of alma.ACS.ROstringPOATie 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);
    }
}
Also used : ROstringPOATie(alma.ACS.ROstringPOATie) ComponentLifecycleException(alma.acs.component.ComponentLifecycleException) ROstringImpl(alma.ACS.impl.ROstringImpl)

Aggregations

ROstringPOATie (alma.ACS.ROstringPOATie)1 ROstringImpl (alma.ACS.impl.ROstringImpl)1 ComponentLifecycleException (alma.acs.component.ComponentLifecycleException)1