Coverage Report - org.apache.maven.execution.MavenExecutionRequest
 
Classes in this File Line Coverage Branch Coverage Complexity
MavenExecutionRequest
N/A
N/A
1
 
 1  
 package org.apache.maven.execution;
 2  
 
 3  
 /*
 4  
  * Licensed to the Apache Software Foundation (ASF) under one
 5  
  * or more contributor license agreements.  See the NOTICE file
 6  
  * distributed with this work for additional information
 7  
  * regarding copyright ownership.  The ASF licenses this file
 8  
  * to you under the Apache License, Version 2.0 (the
 9  
  * "License"); you may not use this file except in compliance
 10  
  * with the License.  You may obtain a copy of the License at
 11  
  *
 12  
  *  http://www.apache.org/licenses/LICENSE-2.0
 13  
  *
 14  
  * Unless required by applicable law or agreed to in writing,
 15  
  * software distributed under the License is distributed on an
 16  
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 17  
  * KIND, either express or implied.  See the License for the
 18  
  * specific language governing permissions and limitations
 19  
  * under the License.
 20  
  */
 21  
 
 22  
 import org.apache.maven.artifact.repository.ArtifactRepository;
 23  
 import org.apache.maven.monitor.event.EventDispatcher;
 24  
 import org.apache.maven.monitor.event.EventMonitor;
 25  
 import org.apache.maven.profiles.ProfileManager;
 26  
 import org.apache.maven.project.ProjectBuilderConfiguration;
 27  
 import org.apache.maven.settings.Settings;
 28  
 
 29  
 import java.util.Date;
 30  
 import java.util.List;
 31  
 import java.util.Properties;
 32  
 
 33  
 /**
 34  
  * @author <a href="mailto:jason@maven.org">Jason van Zyl</a>
 35  
  * @version $Id: MavenExecutionRequest.java 687388 2008-08-20 17:19:21Z dfabulich $
 36  
  */
 37  
 public interface MavenExecutionRequest
 38  
 {
 39  
     ArtifactRepository getLocalRepository();
 40  
 
 41  
     List getGoals();
 42  
 
 43  
     void setSession( MavenSession session );
 44  
 
 45  
     MavenSession getSession();
 46  
 
 47  
     void addEventMonitor( EventMonitor monitor );
 48  
 
 49  
     EventDispatcher getEventDispatcher();
 50  
 
 51  
     Settings getSettings();
 52  
 
 53  
     String getBaseDirectory();
 54  
 
 55  
     void setRecursive( boolean recursive );
 56  
 
 57  
     boolean isRecursive();
 58  
 
 59  
     void setReactorActive( boolean reactorActive );
 60  
 
 61  
     boolean isReactorActive();
 62  
 
 63  
     void setResumeFrom( String resumeFrom );
 64  
 
 65  
     String getResumeFrom();
 66  
     
 67  
     void setSelectedProjects( List projects );
 68  
     
 69  
     List getSelectedProjects();
 70  
     
 71  
     void setMakeBehavior( String makeBehavior );
 72  
     
 73  
     String getMakeBehavior();
 74  
     
 75  
     void setPomFile( String pomFile );
 76  
 
 77  
     String getPomFile();
 78  
 
 79  
     void setFailureBehavior( String failureBehavior );
 80  
 
 81  
     String getFailureBehavior();
 82  
 
 83  
     ProfileManager getGlobalProfileManager();
 84  
 
 85  
     Properties getExecutionProperties();
 86  
 
 87  
     Properties getUserProperties();
 88  
 
 89  
     Date getStartTime();
 90  
 
 91  
     boolean isShowErrors();
 92  
 
 93  
     ProjectBuilderConfiguration getProjectBuilderConfiguration();
 94  
 }