001    package 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    
022    import javax.persistence.Entity;
023    import javax.xml.bind.annotation.XmlRootElement;
024    import 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")
032    @Entity
033    public class CiManagement
034        implements Serializable
035    {
036        /**
037         * A simple identifier for the type of CI server used, eg <tt>continuum</tt>, <tt>bamboo</tt>, <tt>hudson</tt>, etc.
038         */
039        private String system;
040    
041        /**
042         * The base URL of the CI system.
043         */
044        private String url;
045    
046        public String getUrl()
047        {
048            return url;
049        }
050    
051        public void setUrl( String url )
052        {
053            this.url = url;
054        }
055    
056        public String getSystem()
057        {
058            return system;
059        }
060    
061        public void setSystem( String system )
062        {
063            this.system = system;
064        }
065    }