Java tutorial
/******************************************************************************* * Educational Online Test Delivery System * Copyright (c) 2013 American Institutes for Research * * Distributed under the AIR Open Source License, Version 1.0 * See accompanying file AIR-License-1_0.txt or at * http://www.smarterapp.org/documents/American_Institutes_for_Research_Open_Source_Software_License.pdf ******************************************************************************/ package org.opentestsystem.authoring.testauth.stub; import com.mongodb.gridfs.GridFSDBFile; public class DummyGridFSFile extends GridFSDBFile { private String id; private String filename; public String getId() { return id; } public void setId(final String anId) { this.id = anId; } public String getFilename() { return filename; } public void setFilename(final String aFilename) { this.filename = aFilename; } }