001package org.kuali.ole.describe.bo;
002
003import java.io.Serializable;
004
005/**
006 * MarcEditorDataField is business object class for Marc Editor
007 */
008public class WorkMarcEditorDataField implements Serializable {
009    private String tag;
010    private String ind1;
011    private String ind2;
012    private String value;
013
014    /**
015     * Gets the tag attribute.
016     *
017     * @return Returns the tag.
018     */
019    public String getTag() {
020        return tag;
021    }
022
023    /**
024     * Sets the tag attribute value.
025     *
026     * @param tag The tag to set.
027     */
028    public void setTag(String tag) {
029        this.tag = tag;
030    }
031
032    /**
033     * Gets the value attribute.
034     *
035     * @return Returns the value.
036     */
037    public String getValue() {
038        return value;
039    }
040
041    /**
042     * Sets the value attribute value.
043     *
044     * @param value The value to set.
045     */
046    public void setValue(String value) {
047        this.value = value;
048    }
049
050    /**
051     * Gets the ind1 attribute.
052     *
053     * @return Returns the ind1.
054     */
055    public String getInd1() {
056        return ind1;
057    }
058
059    /**
060     * Sets the ind1 attribute value.
061     *
062     * @param ind1 The ind1 to set.
063     */
064    public void setInd1(String ind1) {
065        this.ind1 = ind1;
066    }
067
068    /**
069     * Gets the ind2 attribute.
070     *
071     * @return Returns the ind2.
072     */
073    public String getInd2() {
074        return ind2;
075    }
076
077    /**
078     * Sets the ind2 attribute value.
079     *
080     * @param ind2 The ind2 to set.
081     */
082    public void setInd2(String ind2) {
083        this.ind2 = ind2;
084    }
085
086    /**
087     * Implementing equals,Indicates whether some other object is "equal to" this one.
088     *
089     * @param obj
090     * @return boolean
091     */
092    @Override
093    public boolean equals(Object obj) {
094        return super.equals(obj);    //To change body of overridden methods use File | Settings | File Templates.
095    }
096}