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 */
017package org.apache.camel.util.jsse;
018
019import java.util.ArrayList;
020import java.util.Arrays;
021import java.util.List;
022
023/**
024 * Represents a list of TLS/SSL cipher suite names.
025 */
026public class CipherSuitesParameters {
027
028    private List<String> cipherSuite;
029
030    /**
031     * Returns a live reference to the list of cipher suite names.
032     *
033     * @return a reference to the list, never {@code null}
034     */
035    public List<String> getCipherSuite() {
036        if (this.cipherSuite == null) {
037            this.cipherSuite = new ArrayList<String>();
038        }
039        return this.cipherSuite;
040    }
041
042    @Override
043    public String toString() {
044        StringBuilder builder = new StringBuilder();
045        builder.append("CipherSuitesParameters [cipherSuite=");
046        builder.append(Arrays.toString(getCipherSuite().toArray(new String[getCipherSuite().size()])));
047        builder.append("]");
048        return builder.toString();
049    }
050    
051    
052}