001/**
002 * Copyright 2004-2014 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.student.contract.model;
017
018/**
019 *
020 * @author nwright
021 */
022public class Project {
023
024    private String key;
025
026    public String getKey() {
027        return key;
028    }
029
030    public void setKey(String key) {
031        this.key = key;
032    }
033    private String type;
034
035    public String getType() {
036        return type;
037    }
038
039    public void setType(String type) {
040        this.type = type;
041    }
042    private String name;
043
044    public String getName() {
045        return name;
046    }
047
048    public void setName(String name) {
049        this.name = name;
050    }
051    private String description;
052
053    public String getDescription() {
054        return description;
055    }
056
057    public void setDescription(String description) {
058        this.description = description;
059    }
060    private String directory;
061
062    public String getDirectory() {
063        return directory;
064    }
065
066    public void setDirectory(String directory) {
067        this.directory = directory;
068    }
069    private String javaDirectory;
070
071    public String getJavaDirectory() {
072        return javaDirectory;
073    }
074
075    public void setJavaDirectory(String javaDirectory) {
076        this.javaDirectory = javaDirectory;
077    }
078    private String resourcesDirectory;
079
080    public String getResourcesDirectory() {
081        return resourcesDirectory;
082    }
083
084    public void setResourcesDirectory(String resourcesDirectory) {
085        this.resourcesDirectory = resourcesDirectory;
086    }
087    private String status;
088
089    public String getStatus() {
090        return status;
091    }
092
093    public void setStatus(String status) {
094        this.status = status;
095    }
096    private String comments;
097
098    public String getComments() {
099        return comments;
100    }
101
102    public void setComments(String comments) {
103        this.comments = comments;
104    }
105}