blob: 70302ade4e5b871708bf451cf5d02c165f5642f6 [file] [log] [blame]
package org.apache.maven.continuum.web.action.notifier;
/*
* 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.maven.continuum.model.project.Project;
import org.apache.maven.continuum.model.project.ProjectNotifier;
import org.apache.maven.continuum.notification.AbstractContinuumNotifier;
import java.util.HashMap;
import java.util.Map;
/**
* Action that edits a {@link ProjectNotifier} of type 'MSN' from the
* specified {@link Project}.
*
* @author <a href="mailto:evenisse@apache.org">Emmanuel Venisse</a>
* @version $Id: MsnNotifierEditAction.java 465060 2006-10-17 21:24:38Z jmcconnell $
* @plexus.component role="com.opensymphony.xwork.Action" role-hint="msnProjectNotifierEdit"
* @since 1.1
*/
public class MsnProjectNotifierEditAction
extends AbstractProjectNotifierEditAction
{
private String login;
private String password;
private String address;
protected void initConfiguration( Map configuration )
{
login = (String) configuration.get( "login" );
password = (String) configuration.get( "password" );
address = (String) configuration.get( AbstractContinuumNotifier.ADDRESS_FIELD );
}
protected void setNotifierConfiguration( ProjectNotifier notifier )
{
HashMap configuration = new HashMap();
configuration.put( "login", login );
configuration.put( "password", password );
configuration.put( AbstractContinuumNotifier.ADDRESS_FIELD, address );
notifier.setConfiguration( configuration );
}
public String getLogin()
{
return login;
}
public void setLogin( String login )
{
this.login = login;
}
public String getPassword()
{
return password;
}
public void setPassword( String password )
{
this.password = password;
}
public String getAddress()
{
return address;
}
public void setAddress( String address )
{
this.address = address;
}
}