All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.petruki.switcher.client.domain.criteria.Config Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package com.github.petruki.switcher.client.domain.criteria;

import java.util.Arrays;

/**
 * @author rogerio
 * @since 2019-12-24
 */
public class Config extends SwitcherElement {
	
	private String key;
	private Strategy[] strategies;
	
	public String getKey() {
		
		return key;
	}
	
	public Strategy[] getStrategies() {
		
		return strategies;
	}

	@Override
	public String toString() {
		
		return "Config [key=" + key + ", strategies=" + Arrays.toString(strategies) + ", description=" + description
				+ ", activated=" + activated + "]";
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy