001    /**
002     * OntologyMapping.java
003     * jCOLIBRI2 framework. 
004     * @author Juan A. Recio-García.
005     * GAIA - Group for Artificial Intelligence Applications
006     * http://gaia.fdi.ucm.es
007     * 12/06/2007
008     */
009    package jcolibri.connector.ontologyutils;
010    
011    /**
012     * Stores the mapping configuration of the connector
013     * @author Juan A. Recio-Garcia
014     * @version 1.0
015     *
016     */
017    public class OntologyMapping {
018            private String property;
019            private String concept;
020            private String attribute;
021            /**
022             * @return Returns the attribute.
023             */
024            public String getAttribute() {
025                    return attribute;
026            }
027            /**
028             * @param attribute The attribute to set.
029             */
030            public void setAttribute(String attribute) {
031                    this.attribute = attribute;
032            }
033            /**
034             * @return Returns the concept.
035             */
036            public String getConcept() {
037                    return concept;
038            }
039            /**
040             * @param concept The concept to set.
041             */
042            public void setConcept(String concept) {
043                    this.concept = concept;
044            }
045            /**
046             * @return Returns the property.
047             */
048            public String getProperty() {
049                    return property;
050            }
051            /**
052             * @param property The property to set.
053             */
054            public void setProperty(String property) {
055                    this.property = property;
056            }
057            
058    }