/******************************************************************************* * Copyright (c) 2006-2010 eBay Inc. All Rights Reserved. * 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 *******************************************************************************/ package org.ebayopensource.turmeric.runtime.common.impl.internal.config; /** * <p>Java class for ProtocolProcessorConfig complex type. * * * * */ public class ProtocolProcessorConfig { protected FeatureIndicatorConfig indicator; protected String className; protected String name; protected String version; /** * Gets the value of the indicator property. * * @return * possible object is * {@link FeatureIndicatorConfig } * */ public FeatureIndicatorConfig getIndicator() { return indicator; } /** * Sets the value of the indicator property. * * @param value * allowed object is * {@link FeatureIndicatorConfig } * */ public void setIndicator(FeatureIndicatorConfig value) { this.indicator = value; } /** * Gets the value of the className property. * * @return * possible object is * {@link String } * */ public String getClassName() { return className; } /** * Sets the value of the className property. * * @param value * allowed object is * {@link String } * */ public void setClassName(String value) { this.className = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the version property. * * @return * possible object is * {@link String } * */ public String getVersion() { return version; } /** * Sets the value of the version property. * * @param value * allowed object is * {@link String } * */ public void setVersion(String value) { this.version = value; } }