/** * Copyright (C) 2009-2013 BIMserver.org * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.bimserver.models.log; import java.util.Date; import org.bimserver.emf.IdEObject; import org.bimserver.models.store.User; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Action</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.bimserver.models.log.LogAction#getDate <em>Date</em>}</li> * <li>{@link org.bimserver.models.log.LogAction#getExecutor <em>Executor</em>}</li> * <li>{@link org.bimserver.models.log.LogAction#getAccessMethod <em>Access Method</em>}</li> * </ul> * </p> * * @see org.bimserver.models.log.LogPackage#getLogAction() * @model * @extends IdEObject * @generated */ public interface LogAction extends IdEObject { /** * Returns the value of the '<em><b>Date</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Date</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Date</em>' attribute. * @see #setDate(Date) * @see org.bimserver.models.log.LogPackage#getLogAction_Date() * @model * @generated */ Date getDate(); /** * Sets the value of the '{@link org.bimserver.models.log.LogAction#getDate <em>Date</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Date</em>' attribute. * @see #getDate() * @generated */ void setDate(Date value); /** * Returns the value of the '<em><b>Executor</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Executor</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Executor</em>' reference. * @see #setExecutor(User) * @see org.bimserver.models.log.LogPackage#getLogAction_Executor() * @model * @generated */ User getExecutor(); /** * Sets the value of the '{@link org.bimserver.models.log.LogAction#getExecutor <em>Executor</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Executor</em>' reference. * @see #getExecutor() * @generated */ void setExecutor(User value); /** * Returns the value of the '<em><b>Access Method</b></em>' attribute. * The literals are from the enumeration {@link org.bimserver.models.log.AccessMethod}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Access Method</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Access Method</em>' attribute. * @see org.bimserver.models.log.AccessMethod * @see #setAccessMethod(AccessMethod) * @see org.bimserver.models.log.LogPackage#getLogAction_AccessMethod() * @model * @generated */ AccessMethod getAccessMethod(); /** * Sets the value of the '{@link org.bimserver.models.log.LogAction#getAccessMethod <em>Access Method</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Access Method</em>' attribute. * @see org.bimserver.models.log.AccessMethod * @see #getAccessMethod() * @generated */ void setAccessMethod(AccessMethod value); } // LogAction