package org.apache.archiva.admin.model.beans; /* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ import javax.xml.bind.annotation.XmlRootElement; import java.io.Serializable; /** * @author Olivier Lamy * @since 1.4-M1 */ @XmlRootElement (name = "managedRepository") public class ManagedRepository extends AbstractRepository implements Serializable { private String location; private boolean snapshots = false; private boolean releases = true; private boolean blockRedeployments = false; /** * default model value hourly */ private String cronExpression = "0 0 * * * ?"; /** * not need when creating the repo : only available when reading */ private ManagedRepository stagingRepository; private boolean scanned = true; /** * default model value */ private int daysOlder = 100; /** * default model value */ private int retentionCount = 2; private boolean deleteReleasedSnapshots; private boolean stageRepoNeeded; private boolean resetStats; /** * @since 1.4-M3 */ private boolean skipPackedIndexCreation; public ManagedRepository() { // no op } public ManagedRepository( String id, String name, String location, String layout, boolean snapshots, boolean releases, boolean blockRedeployments, String cronExpression, String indexDir, boolean scanned, int daysOlder, int retentionCount, boolean deleteReleasedSnapshots, boolean stageRepoNeeded ) { super( id, name, layout ); this.location = location; this.snapshots = snapshots; this.releases = releases; this.blockRedeployments = blockRedeployments; this.setCronExpression( cronExpression ); this.setIndexDirectory( indexDir ); this.scanned = scanned; this.daysOlder = daysOlder; this.retentionCount = retentionCount; this.deleteReleasedSnapshots = deleteReleasedSnapshots; this.stageRepoNeeded = stageRepoNeeded; } /** * @since 1.4-M3 */ public ManagedRepository( String id, String name, String location, String layout, boolean snapshots, boolean releases, boolean blockRedeployments, String cronExpression, String indexDir, boolean scanned, int daysOlder, int retentionCount, boolean deleteReleasedSnapshots, boolean stageRepoNeeded, String description, boolean skipPackedIndexCreation ) { this( id, name, location, layout, snapshots, releases, blockRedeployments, cronExpression, indexDir, scanned, daysOlder, retentionCount, deleteReleasedSnapshots, stageRepoNeeded ); setDescription( description ); setSkipPackedIndexCreation( skipPackedIndexCreation ); } public String getCronExpression() { return cronExpression; } public void setCronExpression( String cronExpression ) { this.cronExpression = cronExpression; } public String getLocation() { return this.location; } public boolean isReleases() { return this.releases; } /** * Get null */ public boolean isSnapshots() { return this.snapshots; } public void setReleases( boolean releases ) { this.releases = releases; } public void setSnapshots( boolean snapshots ) { this.snapshots = snapshots; } public void setLocation( String location ) { this.location = location; } public boolean isBlockRedeployments() { return blockRedeployments; } public void setBlockRedeployments( boolean blockRedeployments ) { this.blockRedeployments = blockRedeployments; } public ManagedRepository getStagingRepository() { return stagingRepository; } public void setStagingRepository( ManagedRepository stagingRepository ) { this.stagingRepository = stagingRepository; } public boolean isScanned() { return scanned; } public void setScanned( boolean scanned ) { this.scanned = scanned; } public int getDaysOlder() { return daysOlder; } public void setDaysOlder( int daysOlder ) { this.daysOlder = daysOlder; } public int getRetentionCount() { return retentionCount; } public void setRetentionCount( int retentionCount ) { this.retentionCount = retentionCount; } public boolean isDeleteReleasedSnapshots() { return deleteReleasedSnapshots; } public void setDeleteReleasedSnapshots( boolean deleteReleasedSnapshots ) { this.deleteReleasedSnapshots = deleteReleasedSnapshots; } public boolean isStageRepoNeeded() { return stageRepoNeeded; } public void setStageRepoNeeded( boolean stageRepoNeeded ) { this.stageRepoNeeded = stageRepoNeeded; } public boolean isResetStats() { return resetStats; } public void setResetStats( boolean resetStats ) { this.resetStats = resetStats; } public boolean isSkipPackedIndexCreation() { return skipPackedIndexCreation; } public void setSkipPackedIndexCreation( boolean skipPackedIndexCreation ) { this.skipPackedIndexCreation = skipPackedIndexCreation; } @Override public String toString() { final StringBuilder sb = new StringBuilder(); sb.append( super.toString() ); sb.append( "ManagedRepository" ); sb.append( "{location='" ).append( location ).append( '\'' ); sb.append( ", snapshots=" ).append( snapshots ); sb.append( ", releases=" ).append( releases ); sb.append( ", blockRedeployments=" ).append( blockRedeployments ); sb.append( ", cronExpression='" ).append( cronExpression ).append( '\'' ); sb.append( ", stagingRepository=" ).append( stagingRepository ); sb.append( ", scanned=" ).append( scanned ); sb.append( ", daysOlder=" ).append( daysOlder ); sb.append( ", retentionCount=" ).append( retentionCount ); sb.append( ", deleteReleasedSnapshots=" ).append( deleteReleasedSnapshots ); sb.append( ", stageRepoNeeded=" ).append( stageRepoNeeded ); sb.append( ", resetStats=" ).append( resetStats ); sb.append( ", skipPackedIndexCreation=" ).append( skipPackedIndexCreation ); sb.append( '}' ); return sb.toString(); } }