blob: 3d5d71a945d84d4f7373003d8644d493db866415 [file] [log] [blame]
package org.apache.maven.scm.provider.synergy.util;
/*
* 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 java.util.Date;
/**
* This class contains the different Synergy roles available.
*
* @author <a href="mailto:julien.henry@capgemini.com">Julien Henry</a>
*/
public class SynergyTask
{
private int number;
private String username;
private Date modifiedTime;
private String comment;
public SynergyTask()
{
}
/**
* @return the comment
*/
public String getComment()
{
return comment;
}
/**
* @param comment the comment to set
*/
public void setComment( String comment )
{
this.comment = comment;
}
/**
* @return the modifiedTime
*/
public Date getModifiedTime()
{
return modifiedTime;
}
/**
* @param modifiedTime the modifiedTime to set
*/
public void setModifiedTime( Date modifiedTime )
{
this.modifiedTime = modifiedTime;
}
/**
* @return the number
*/
public int getNumber()
{
return number;
}
/**
* @param number the number to set
*/
public void setNumber( int number )
{
this.number = number;
}
/**
* @return the username
*/
public String getUsername()
{
return username;
}
/**
* @param username the username to set
*/
public void setUsername( String username )
{
this.username = username;
}
}