Re: [equinox-dev] ConfigAdmin getConfiguration from external storage

2011-06-02 Thread Kirchev, Lazar
l.kirc...@sap.com To: Equinox development mailing list equinox-dev@eclipse.org Date: 05/25/2011 06:44 AM Subject: Re: [equinox-dev] ConfigAdmin getConfiguration from external storage Hello, What we actually need is to be able to use a custom

Re: [equinox-dev] ConfigAdmin getConfiguration from external storage

2011-05-26 Thread Kirchev, Lazar
will open a bug for feature request. Lazar From: equinox-dev-boun...@eclipse.org [mailto:equinox-dev-boun...@eclipse.org] On Behalf Of Thomas Watson Sent: Wednesday, May 25, 2011 3:31 PM To: Equinox development mailing list Subject: Re: [equinox-dev] ConfigAdmin getConfiguration from external storage

Re: [equinox-dev] ConfigAdmin getConfiguration from external storage

2011-05-25 Thread Kirchev, Lazar
Message- From: equinox-dev-boun...@eclipse.org [mailto:equinox-dev-boun...@eclipse.org] On Behalf Of Neil Bartlett Sent: Friday, May 13, 2011 3:29 PM To: Equinox development mailing list Subject: Re: [equinox-dev] ConfigAdmin getConfiguration from external storage Hi Philip, The normal way

Re: [equinox-dev] ConfigAdmin getConfiguration from external storage

2011-05-25 Thread Thomas Watson
: | | --| |Re: [equinox-dev] ConfigAdmin getConfiguration from external storage

[equinox-dev] ConfigAdmin getConfiguration from external storage

2011-05-13 Thread Philip Yankov
Hi, Is it possible to get a notification when ConfigurationAdmin.getConfiguration( with any pid ) is called and return a configuration from an external storage then? Are you aware of existing mechanism to achieve this? Alternatively, we thought of pluging a hook inside getConfiguration() method,

Re: [equinox-dev] ConfigAdmin getConfiguration from external storage

2011-05-13 Thread Neil Bartlett
Hi Philip, The normal way to hook config admin into an external data storage is to write a management agent that *calls* getConfiguration() and supplies the data via an update to the Configuration object. That way your agent can work with any config admin implementation. Typically config admin

Re: [equinox-dev] ConfigAdmin getConfiguration from external storage

2011-05-13 Thread Philip Yankov
Hi Neil, Actually I want not to call update on Configuration object because in that way the configuration will go to internal configuration store of ConfigAdmin. I just want when getConfiguration is called and nothing is found in internal configuration store of ConfigAdmin, to hook exactly there