001 /** 002 * Copyright 2009-2012 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 */ 016 package org.codehaus.mojo.properties; 017 018 public class Version { 019 020 String major; 021 String minor; 022 String incremental; 023 String qualifier; 024 025 public String getMajor() { 026 return major; 027 } 028 029 public void setMajor(String major) { 030 this.major = major; 031 } 032 033 public String getMinor() { 034 return minor; 035 } 036 037 public void setMinor(String minor) { 038 this.minor = minor; 039 } 040 041 public String getIncremental() { 042 return incremental; 043 } 044 045 public void setIncremental(String incremental) { 046 this.incremental = incremental; 047 } 048 049 public String getQualifier() { 050 return qualifier; 051 } 052 053 public void setQualifier(String qualifier) { 054 this.qualifier = qualifier; 055 } 056 057 }