blob: f84f5968ff753c5679dc3c6b36d8a02f51a59ab6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 Obeo.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.sirius.server.backend.internal.services.project;
/**
* The DTO received by clients after the update of the project description.
*
* @author sbegaudeau
*/
@SuppressWarnings({ "checkstyle::javadocmethod", "checkstyle::javadocfield" })
public class SiriusServerProjectDescriptionUpdatedDto {
private String description;
/**
* The constructor.
*
* @param description
* The new description of the project
*/
public SiriusServerProjectDescriptionUpdatedDto(String description) {
this.description = description;
}
public String getDescription() {
return this.description;
}
}