/* * Copyright 2014 JBoss Inc * * 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 org.overlord.dtgov.ui.client.shared.beans; import java.io.Serializable; import org.jboss.errai.common.client.api.annotations.Portable; /** * The Class TargetClassifier. It encapsulates the fields used in the Target * Classifiers table. * * @author David Virgil Naranjo * */ @Portable public class TargetClassifier implements Serializable{ /** * */ private static final long serialVersionUID = 6955436617795223516L; private String _value; /** * Instantiates a new target classifier. */ public TargetClassifier() { } /** * Instantiates a new target classifier. * * @param value * the value */ public TargetClassifier(String value) { this._value = value; } /** * Gets the value. * * @return the value */ public String getValue() { return _value; } /** * Sets the value. * * @param value * the new value */ public void setValue(String value) { this._value = value; } /* * (non-Javadoc) * * @see java.lang.Object#toString() */ @Override public String toString() { return "TargetClassifier [value=" + _value + "]"; //$NON-NLS-1$ //$NON-NLS-2$ } }