blob: 53f757f69eeefcbc6c64bf9ad23b317074bb0da3 [file] [log] [blame]
package org.apache.archiva.admin.model.beans;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import org.apache.archiva.admin.model.AbstractRepositoryConnector;
import javax.xml.bind.annotation.XmlRootElement;
import java.io.Serializable;
/**
* @author Olivier Lamy
* @since 1.4-M1
*/
@XmlRootElement( name = "proxyConnector" )
public class ProxyConnector
extends AbstractRepositoryConnector
implements Serializable
{
/**
* The order id for UNORDERED
*/
public static final int UNORDERED = 0;
/**
* The policy key {@link #getPolicies()} for error handling.
* for details on potential values to this policy key.
*/
public static final String POLICY_PROPAGATE_ERRORS = "propagate-errors";
/**
* The policy key {@link #getPolicies()} for error handling when an artifact is present.
* for details on potential values to this policy key.
*/
public static final String POLICY_PROPAGATE_ERRORS_ON_UPDATE = "propagate-errors-on-update";
/**
* The policy key {@link #getPolicies()} for snapshot handling.
* for details on potential values to this policy key.
*/
public static final String POLICY_SNAPSHOTS = "snapshots";
/**
* The policy key {@link #getPolicies()} for releases handling.
* for details on potential values to this policy key.
*/
public static final String POLICY_RELEASES = "releases";
/**
* The policy key {@link #getPolicies()} for checksum handling.
* for details on potential values to this policy key.
*/
public static final String POLICY_CHECKSUM = "checksum";
/**
* The policy key {@link #getPolicies()} for cache-failures handling.
* for details on potential values to this policy key.
*/
public static final String POLICY_CACHE_FAILURES = "cache-failures";
/**
*
* The order of the proxy connectors. (0 means no order specified)
* .
*/
private int order = 0;
/**
* Get the order of the proxy connectors. (0 means no order specified)
* @return int
*/
public int getOrder()
{
return this.order;
}
/**
* Set the order of the proxy connectors. (0 means no order specified)
* @param order
*/
public void setOrder( int order )
{
this.order = order;
}
@Override
public String toString()
{
final StringBuilder sb = new StringBuilder();
sb.append( "ProxyConnector" );
sb.append( "{order=" ).append( order );
sb.append( '}' );
sb.append( super.toString() );
return sb.toString();
}
}