Examples of CaseInsensitiveDictionary


Examples of com.volantis.osgi.cm.util.CaseInsensitiveDictionary

    }

    // Javadoc inherited.
    public ConfigurationSnapshot createSnapshot() {
        return new ConfigurationSnapshot(pid,
                new CaseInsensitiveDictionary(properties));
    }
View Full Code Here

Examples of org.apache.felix.cm.impl.CaseInsensitiveDictionary


    protected final Dictionary getProperties( Dictionary<String, ?> rawProperties, ServiceReference service,
        String configPid, String factoryPid )
    {
        Dictionary props = new CaseInsensitiveDictionary( rawProperties );
        this.cm.callPlugins( props, service, configPid, factoryPid );
        return props;
    }
View Full Code Here

Examples of org.apache.felix.cm.impl.CaseInsensitiveDictionary


    protected final Dictionary getProperties( Dictionary<String, ?> rawProperties, ServiceReference service,
        String configPid, String factoryPid )
    {
        Dictionary props = new CaseInsensitiveDictionary( rawProperties );
        this.cm.callPlugins( props, service, configPid, factoryPid );
        return props;
    }
View Full Code Here

Examples of org.jboss.gravia.utils.CaseInsensitiveDictionary

        if (properties == null)
            properties = new Hashtable();

        properties.put(org.jboss.gravia.Constants.SERVICE_ID, serviceId);
        properties.put(org.jboss.gravia.Constants.OBJECTCLASS, classNames);
        this.currProperties = new CaseInsensitiveDictionary(properties);
        this.cachedToString = updateCachedToString();

        // Create the {@link ServiceRegistration} and {@link ServiceReference}
        this.registration = new ServiceRegistrationWrapper(this);
        this.reference = new ServiceReferenceWrapper(this);
View Full Code Here

Examples of org.jboss.gravia.utils.CaseInsensitiveDictionary

            if (properties == null)
                properties = new Hashtable();

            properties.put(org.jboss.gravia.Constants.SERVICE_ID, currProperties.get(org.jboss.gravia.Constants.SERVICE_ID));
            properties.put(org.jboss.gravia.Constants.OBJECTCLASS, currProperties.get(org.jboss.gravia.Constants.OBJECTCLASS));
            currProperties = new CaseInsensitiveDictionary(properties);
        }

        // This event is synchronously delivered after the service properties have been modified.
        serviceManager.fireServiceEvent(ownerModule, ServiceEvent.MODIFIED, this);
    }
View Full Code Here

Examples of org.jboss.gravia.utils.CaseInsensitiveDictionary

        if (properties == null)
            properties = new Hashtable();

        properties.put(org.jboss.gravia.Constants.SERVICE_ID, serviceId);
        properties.put(org.jboss.gravia.Constants.OBJECTCLASS, classNames);
        this.currProperties = new CaseInsensitiveDictionary(properties);
        this.cachedToString = updateCachedToString();

        // Create the {@link ServiceRegistration} and {@link ServiceReference}
        this.registration = new ServiceRegistrationWrapper(this);
        this.reference = new ServiceReferenceWrapper(this);
View Full Code Here

Examples of org.jboss.gravia.utils.CaseInsensitiveDictionary

            if (properties == null)
                properties = new Hashtable();

            properties.put(org.jboss.gravia.Constants.SERVICE_ID, currProperties.get(org.jboss.gravia.Constants.SERVICE_ID));
            properties.put(org.jboss.gravia.Constants.OBJECTCLASS, currProperties.get(org.jboss.gravia.Constants.OBJECTCLASS));
            currProperties = new CaseInsensitiveDictionary(properties);
        }

        // This event is synchronously delivered after the service properties have been modified.
        serviceManager.fireServiceEvent(ownerModule, ServiceEvent.MODIFIED, this);
    }
View Full Code Here

Examples of org.jboss.gravia.utils.CaseInsensitiveDictionary

        if (properties == null)
            properties = new Hashtable();

        properties.put(org.jboss.gravia.Constants.SERVICE_ID, serviceId);
        properties.put(org.jboss.gravia.Constants.OBJECTCLASS, classNames);
        this.currProperties = new CaseInsensitiveDictionary(properties);
        this.cachedToString = updateCachedToString();

        // Create the {@link ServiceRegistration} and {@link ServiceReference}
        this.registration = new ServiceRegistrationWrapper(this);
        this.reference = new ServiceReferenceWrapper(this);
View Full Code Here

Examples of org.jboss.gravia.utils.CaseInsensitiveDictionary

            if (properties == null)
                properties = new Hashtable();

            properties.put(org.jboss.gravia.Constants.SERVICE_ID, currProperties.get(org.jboss.gravia.Constants.SERVICE_ID));
            properties.put(org.jboss.gravia.Constants.OBJECTCLASS, currProperties.get(org.jboss.gravia.Constants.OBJECTCLASS));
            currProperties = new CaseInsensitiveDictionary(properties);
        }

        // This event is synchronously delivered after the service properties have been modified.
        serviceManager.fireServiceEvent(ownerModule, ServiceEvent.MODIFIED, this);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.