001/**
002 * Copyright 2005-2018 The Kuali Foundation
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.kuali.rice.krad.labs.transaction;
017
018import org.apache.commons.lang.RandomStringUtils;
019
020import java.io.Serializable;
021
022/**
023 * Dummy test object for testing
024 *
025 * @author Kuali Rice Team (rice.collab@kuali.org)
026 */
027public class Tag implements Serializable {
028    private String tagId = "tagId";
029    private String transactionId = "transactionId";
030    private String tagCode = RandomStringUtils.randomAlphanumeric(4);
031
032    public String getTagCode() {
033        return tagCode;
034    }
035
036    public void setTagCode(String tagCode) {
037        this.tagCode = tagCode;
038    }
039
040    public String getTagId() {
041        return tagId;
042    }
043
044    public void setTagId(String tagId) {
045        this.tagId = tagId;
046    }
047
048    public String getTransactionId() {
049        return transactionId;
050    }
051
052    public void setTransactionId(String transactionId) {
053        this.transactionId = transactionId;
054    }
055}