001package org.kuali.ole.bo.explain;
002
003/**
004 * Created with IntelliJ IDEA.
005 * User: ?
006 * Date: 7/19/12
007 * Time: 5:10 PM
008 * To change this template use File | Settings | File Templates.
009 */
010public class OleSRUExplainSchema {
011
012    private String title;
013
014    private String name;
015    private String identifier;
016    private String value;
017
018    public String getValue() {
019        return value;
020    }
021
022    public void setValue(String value) {
023        this.value = value;
024    }
025
026    public String getName() {
027        return name;
028    }
029
030    public void setName(String name) {
031        this.name = name;
032    }
033
034    public String getIdentifier() {
035        return identifier;
036    }
037
038    public void setIdentifier(String identifier) {
039        this.identifier = identifier;
040    }
041
042    public String getTitle() {
043        return title;
044    }
045
046    public void setTitle(String title) {
047        this.title = title;
048    }
049
050    @Override
051    public String toString() {
052        return "Explain Schema{" +
053                "title='" + title + '\'' +
054                ", name='" + name + '\'' +
055                ", identifier='" + identifier + '\'' +
056                ", value='" + value + '\'' +
057                '}';
058    }
059}