/******************************************************************************* * Copyright (c) 2015 Development Gateway, Inc and others. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the MIT License (MIT) * which accompanies this distribution, and is available at * https://opensource.org/licenses/MIT * * Contributors: * Development Gateway - initial API and implementation *******************************************************************************/ package org.devgateway.toolkit.web.rest.entity; /** * * @author mpostelnicu * */ public class Dummy { private final long id; private final String content; public Dummy(final long id, final String content) { this.id = id; this.content = content; } public long getId() { return id; } public String getContent() { return content; } }