blob: ccfc2d87d1b9f8398a35835f95a7021e73a41486 [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 used to represent a page of the workflow.
*
* @author sbegaudeau
*/
@SuppressWarnings({ "checkstyle::javadocmethod", "checkstyle::javadocfield" })
public class SiriusServerPageDto {
private String identifier;
private String name;
/**
* The constructor.
*
* @param identifier
* The identifier
* @param name
* The name
*/
public SiriusServerPageDto(String identifier, String name) {
this.identifier = identifier;
this.name = name;
}
public String getIdentifier() {
return this.identifier;
}
public String getName() {
return this.name;
}
}