001    package org.apache.archiva.admin.model.beans;
002    /*
003     * Licensed to the Apache Software Foundation (ASF) under one
004     * or more contributor license agreements.  See the NOTICE file
005     * distributed with this work for additional information
006     * regarding copyright ownership.  The ASF licenses this file
007     * to you under the Apache License, Version 2.0 (the
008     * "License"); you may not use this file except in compliance
009     * with the License.  You may obtain a copy of the License at
010     *
011     * http://www.apache.org/licenses/LICENSE-2.0
012     *
013     * Unless required by applicable law or agreed to in writing,
014     * software distributed under the License is distributed on an
015     * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
016     * KIND, either express or implied.  See the License for the
017     * specific language governing permissions and limitations
018     * under the License.
019     */
020    
021    import javax.xml.bind.annotation.XmlRootElement;
022    
023    /**
024     * @author Olivier Lamy
025     * @since 1.4-M4
026     */
027    @XmlRootElement( name = "archivaRuntimeConfiguration" )
028    public class ArchivaRuntimeConfiguration
029    {
030        private CacheConfiguration urlFailureCacheConfiguration;
031    
032        public ArchivaRuntimeConfiguration()
033        {
034            // no op
035        }
036    
037        public CacheConfiguration getUrlFailureCacheConfiguration()
038        {
039            return urlFailureCacheConfiguration;
040        }
041    
042        public void setUrlFailureCacheConfiguration( CacheConfiguration urlFailureCacheConfiguration )
043        {
044            this.urlFailureCacheConfiguration = urlFailureCacheConfiguration;
045        }
046    
047        @Override
048        public String toString()
049        {
050            final StringBuilder sb = new StringBuilder();
051            sb.append( "ArchivaRuntimeConfiguration" );
052            sb.append( "{urlFailureCacheConfiguration=" ).append( urlFailureCacheConfiguration );
053            sb.append( '}' );
054            return sb.toString();
055        }
056    }