001/**
002 * Copyright (C) 2007 - 2016, Jens Lehmann
003 *
004 * This file is part of DL-Learner.
005 *
006 * DL-Learner is free software; you can redistribute it and/or modify
007 * it under the terms of the GNU General Public License as published by
008 * the Free Software Foundation; either version 3 of the License, or
009 * (at your option) any later version.
010 *
011 * DL-Learner is distributed in the hope that it will be useful,
012 * but WITHOUT ANY WARRANTY; without even the implied warranty of
013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
014 * GNU General Public License for more details.
015 *
016 * You should have received a copy of the GNU General Public License
017 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
018 */
019package org.dllearner.kb.repository.bioportal;
020
021public class Success {
022        private String accessedResource;
023        private String accessDate;
024        private Data data;
025        
026        public String getAccessedResource() {
027                return accessedResource;
028        }
029        public void setAccessedResource(String accessedResource) {
030                this.accessedResource = accessedResource;
031        }
032        public String getAccessDate() {
033                return accessDate;
034        }
035        public void setAccessDate(String accessDate) {
036                this.accessDate = accessDate;
037        }
038        public Data getData() {
039                return data;
040        }
041        public void setData(Data data) {
042                this.data = data;
043        }       
044}