001package org.apache.archiva.metadata.model; 002 003/* 004 * Licensed to the Apache Software Foundation (ASF) under one 005 * or more contributor license agreements. See the NOTICE file 006 * distributed with this work for additional information 007 * regarding copyright ownership. The ASF licenses this file 008 * to you under the Apache License, Version 2.0 (the 009 * "License"); you may not use this file except in compliance 010 * with the License. You may obtain a copy of the License at 011 * 012 * http://www.apache.org/licenses/LICENSE-2.0 013 * 014 * Unless required by applicable law or agreed to in writing, 015 * software distributed under the License is distributed on an 016 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 017 * KIND, either express or implied. See the License for the 018 * specific language governing permissions and limitations 019 * under the License. 020 */ 021 022import javax.persistence.Entity; 023import javax.xml.bind.annotation.XmlRootElement; 024import java.io.Serializable; 025 026/** 027 * Information about the CI system used by the project. 028 * 029 * TODO considering moving this to a facet - avoid referring to it externally 030 */ 031@XmlRootElement(name = "ciManagement") 032public class CiManagement 033 implements Serializable 034{ 035 /** 036 * A simple identifier for the type of CI server used, eg <tt>continuum</tt>, <tt>bamboo</tt>, <tt>hudson</tt>, etc. 037 */ 038 private String system; 039 040 /** 041 * The base URL of the CI system. 042 */ 043 private String url; 044 045 public CiManagement() 046 { 047 // no op 048 } 049 050 public CiManagement( String system, String url ) 051 { 052 this.system = system; 053 this.url = url; 054 } 055 056 public String getUrl() 057 { 058 return url; 059 } 060 061 public void setUrl( String url ) 062 { 063 this.url = url; 064 } 065 066 public String getSystem() 067 { 068 return system; 069 } 070 071 public void setSystem( String system ) 072 { 073 this.system = system; 074 } 075 076 @Override 077 public String toString() 078 { 079 return "CiManagement{" + 080 "system='" + system + '\'' + 081 ", url='" + url + '\'' + 082 '}'; 083 } 084}