001/** 002 * Copyright 2010-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.common.util; 017 018/** 019 * Simple pojo uniquely identifying a physical software artifact. Strongly modeled after Maven's Artifact object 020 * 021 * @deprecated 022 */ 023@Deprecated 024public class Artifact { 025 026 String groupId; 027 String artifactId; 028 String version; 029 String classifier; 030 String type; 031 032 public String getGroupId() { 033 return groupId; 034 } 035 036 public void setGroupId(String groupId) { 037 this.groupId = groupId; 038 } 039 040 public String getArtifactId() { 041 return artifactId; 042 } 043 044 public void setArtifactId(String artifactId) { 045 this.artifactId = artifactId; 046 } 047 048 public String getVersion() { 049 return version; 050 } 051 052 public void setVersion(String version) { 053 this.version = version; 054 } 055 056 public String getClassifier() { 057 return classifier; 058 } 059 060 public void setClassifier(String classifier) { 061 this.classifier = classifier; 062 } 063 064 public String getType() { 065 return type; 066 } 067 068 public void setType(String packaging) { 069 this.type = packaging; 070 } 071 072}