/* * Copyright 2013 Thomas Bocek * * Licensed 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. */ package net.tomp2p.connection2; /** * The class that stores the limits for the resource reservation. * * @author Thomas Bocek * */ public class ChannelClientConfiguration { private int maxPermitsPermanentTCP; private int maxPermitsUDP; private int maxPermitsTCP; private PipelineFilter pipelineFilter; private SignatureFactory signatureFactory; /** * @return The maximum number of permanent (long-lived) connections */ public int maxPermitsPermanentTCP() { return maxPermitsPermanentTCP; } /** * @param maxPermitsPermanentTCP * The maximum number of permanent (long-lived) connections * @return This class */ public ChannelClientConfiguration maxPermitsPermanentTCP(final int maxPermitsPermanentTCP) { this.maxPermitsPermanentTCP = maxPermitsPermanentTCP; return this; } /** * @return The maximum number of short-lived UDP connections */ public int maxPermitsUDP() { return maxPermitsUDP; } /** * @param maxPermitsUDP * The maximum number of short-lived UDP connections * @return This class */ public ChannelClientConfiguration maxPermitsUDP(final int maxPermitsUDP) { this.maxPermitsUDP = maxPermitsUDP; return this; } /** * @return The maximum number of short-lived TCP connections */ public int maxPermitsTCP() { return maxPermitsTCP; } /** * @param maxPermitsTCP * The maximum number of short-lived TCP connections * @return This class */ public ChannelClientConfiguration maxPermitsTCP(final int maxPermitsTCP) { this.maxPermitsTCP = maxPermitsTCP; return this; } /** * @return Set the filter for the pipeline, where the user can add / remove or change filters */ public PipelineFilter pipelineFilter() { return pipelineFilter; } /** * @param pipelineFilter * Set the filter for the pipeline, where the user can add / remove or change filters * @return This class */ public ChannelClientConfiguration pipelineFilter(final PipelineFilter pipelineFilter) { this.pipelineFilter = pipelineFilter; return this; } /** * @return The factory for the signature */ public SignatureFactory signatureFactory() { return signatureFactory; } /** * @param signatureFactory * The factory for the signature * @return This class */ public ChannelClientConfiguration signatureFactory(final SignatureFactory signatureFactory) { this.signatureFactory = signatureFactory; return this; } }