001    /**
002     * Licensed to the Apache Software Foundation (ASF) under one or more
003     * contributor license agreements.  See the NOTICE file distributed with
004     * this work for additional information regarding copyright ownership.
005     * The ASF licenses this file to You under the Apache License, Version 2.0
006     * (the "License"); you may not use this file except in compliance with
007     * the License.  You may obtain a copy of the License at
008     *
009     *      http://www.apache.org/licenses/LICENSE-2.0
010     *
011     * Unless required by applicable law or agreed to in writing, software
012     * distributed under the License is distributed on an "AS IS" BASIS,
013     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014     * See the License for the specific language governing permissions and
015     * limitations under the License.
016     */
017    package org.apache.camel.util.blueprint;
018    
019    import java.util.Set;
020    import javax.xml.bind.annotation.XmlRootElement;
021    import javax.xml.bind.annotation.XmlTransient;
022    import javax.xml.bind.annotation.XmlType;
023    
024    import org.apache.camel.CamelContext;
025    import org.apache.camel.blueprint.BlueprintCamelContextLookupHelper;
026    import org.apache.camel.core.xml.util.jsse.AbstractSSLContextParametersFactoryBean;
027    import org.osgi.service.blueprint.container.BlueprintContainer;
028    
029    @XmlRootElement(name = "sslContextParameters")
030    @XmlType(propOrder = {})
031    public class SSLContextParametersFactoryBean extends AbstractSSLContextParametersFactoryBean {
032        
033        private KeyManagersParametersFactoryBean keyManagers;
034        private TrustManagersParametersFactoryBean trustManagers;
035        private SecureRandomParametersFactoryBean secureRandom;
036        private SSLContextClientParametersFactoryBean clientParameters;
037        private SSLContextServerParametersFactoryBean serverParameters;
038        @XmlTransient
039        private BlueprintContainer blueprintContainer;
040    
041        @Override
042        public KeyManagersParametersFactoryBean getKeyManagers() {
043            return keyManagers;
044        }
045        
046        public void setKeyManagers(KeyManagersParametersFactoryBean keyManagers) {
047            this.keyManagers = keyManagers;
048        }
049    
050        @Override
051        public TrustManagersParametersFactoryBean getTrustManagers() {
052            return trustManagers;
053        }
054        
055        public void setTrustManagers(TrustManagersParametersFactoryBean trustManagers) {
056            this.trustManagers = trustManagers;
057        }
058    
059        @Override
060        public SecureRandomParametersFactoryBean getSecureRandom() {
061            return secureRandom;
062        }
063    
064        public void setSecureRandom(SecureRandomParametersFactoryBean secureRandom) {
065            this.secureRandom = secureRandom;
066        }
067    
068        @Override
069        public SSLContextClientParametersFactoryBean getClientParameters() {
070            return clientParameters;
071        }
072    
073        public void setClientParameters(SSLContextClientParametersFactoryBean clientParameters) {
074            this.clientParameters = clientParameters;
075        }
076    
077        @Override
078        public SSLContextServerParametersFactoryBean getServerParameters() {
079            return serverParameters;
080        }
081        
082        public void setServerParameters(SSLContextServerParametersFactoryBean serverParameters) {
083            this.serverParameters = serverParameters;
084        }
085        
086        public void setBlueprintContainer(BlueprintContainer blueprintContainer) {
087            this.blueprintContainer = blueprintContainer;
088        }
089        
090        @Override
091        protected CamelContext getCamelContextWithId(String camelContextId) {
092            if (blueprintContainer != null) {
093                return (CamelContext) blueprintContainer.getComponentInstance(camelContextId);
094            }
095            return null;
096        }
097    
098        @Override
099        protected CamelContext discoverDefaultCamelContext() {
100            if (blueprintContainer != null) {
101                Set<String> ids = BlueprintCamelContextLookupHelper.lookupBlueprintCamelContext(blueprintContainer);
102                if (ids.size() == 1) {
103                    // there is only 1 id for a BlueprintCamelContext so fallback and use this
104                    return getCamelContextWithId(ids.iterator().next());
105                }
106            }
107            return null;
108        }
109    }