com.feedzai.fos.impl.r.config.RManagerConfig Maven / Gradle / Ivy
/*
* $#
* FOS R implementation
*
* Copyright (C) 2013 Feedzai SA
*
* This software is licensed under the Apache License, Version 2.0 (the "Apache License") or the GNU
* Lesser General Public License version 3 (the "GPL License"). You may choose either license to govern
* your use of this software only upon the condition that you accept all of the terms of either the Apache
* License or the LGPL License.
*
* You may obtain a copy of the Apache License and the LGPL License at:
*
* http://www.apache.org/licenses/LICENSE-2.0.txt
* http://www.gnu.org/licenses/lgpl-3.0.txt
*
* Unless required by applicable law or agreed to in writing, software distributed under the Apache License
* or the LGPL License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the Apache License and the LGPL License for the specific language governing
* permissions and limitations under the Apache License and the LGPL License.
* #$
*/
package com.feedzai.fos.impl.r.config;
import com.feedzai.fos.api.config.FosConfig;
import com.google.common.base.Objects;
import static com.google.common.base.Preconditions.checkNotNull;
/**
* Configuration required for the r manager.
* @author miguel.duarte
* @since 1.0.2
*/
public class RManagerConfig {
/**
* Name of the configuration parameter for: the size of the thread pool classifier.
*/
private FosConfig configuration;
/**
* Creates a new object from the given configuration.
*
*
* @param configuration creates a FosConfig with the given configuration.
*/
public RManagerConfig(FosConfig configuration) {
checkNotNull(configuration, "Configuration cannot be null");
this.configuration = configuration;
}
@Override
public String toString() {
return Objects.toStringHelper(this)
.add("configuration", configuration)
.toString();
}
public void setConfiguration(FosConfig configuration) {
this.configuration = configuration;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy