
org.apache.maven.continuum.notification.MessageContext Maven / Gradle / Ivy
package org.apache.maven.continuum.notification;
/*
* 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 org.apache.continuum.model.project.ProjectScmRoot;
import org.apache.maven.continuum.model.project.BuildDefinition;
import org.apache.maven.continuum.model.project.BuildResult;
import org.apache.maven.continuum.model.project.Project;
import org.apache.maven.continuum.model.project.ProjectNotifier;
import java.util.List;
/**
* @author Emmanuel Venisse
* @version $Id: MessageContext.java 709300 2008-10-31 00:01:38Z ctan $
*/
public class MessageContext
{
private Project project;
private BuildDefinition buildDefinition;
private List notifiers;
private BuildResult buildResult;
private ProjectScmRoot projectScmRoot;
public Project getProject()
{
return project;
}
public void setProject( Project project )
{
this.project = project;
}
public BuildDefinition getBuildDefinition()
{
return buildDefinition;
}
public void setBuildDefinition( BuildDefinition buildDefinition )
{
this.buildDefinition = buildDefinition;
}
public List getNotifiers()
{
return notifiers;
}
public void setNotifier( List notifiers )
{
this.notifiers = notifiers;
}
public BuildResult getBuildResult()
{
return buildResult;
}
public void setBuildResult( BuildResult buildResult )
{
this.buildResult = buildResult;
}
public ProjectScmRoot getProjectScmRoot()
{
return projectScmRoot;
}
public void setProjectScmRoot( ProjectScmRoot projectScmRoot )
{
this.projectScmRoot = projectScmRoot;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy