001/*
002 *  Copyright 2021 Anyware Services
003 *
004 *  Licensed under the Apache License, Version 2.0 (the "License");
005 *  you may not use this file except in compliance with the License.
006 *  You may obtain a copy of the License at
007 *
008 *      http://www.apache.org/licenses/LICENSE-2.0
009 *
010 *  Unless required by applicable law or agreed to in writing, software
011 *  distributed under the License is distributed on an "AS IS" BASIS,
012 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 *  See the License for the specific language governing permissions and
014 *  limitations under the License.
015 */
016package org.ametys.plugins.forms;
017
018/**
019 * Events relative to forms.
020 */
021public interface ObservationConstants
022{
023    /** Fired when a form is created. */
024    public static final String FORM_CREATED = "form.created";
025    /** Fired when a form is modified. */
026    public static final String FORM_MODIFIED = "form.modified";
027    /** Fired when a form is deleted. */
028    public static final String FORM_DELETED = "form.deleted";
029    
030    /** Fired when a form entry is added. */
031    public static final String FORM_ENTRY_ADDED = "form.entry.added";
032    /** Fired when a form entry is modified. */
033    public static final String FORM_ENTRY_MODIFIED = "form.entry.modified";
034    /** Fired when a form entry is deleled. */
035    public static final String FORM_ENTRY_DELETED = "form.entry.deleted";
036    /** Fired when the workflow a form entry is modified. */
037    public static final String FORM_ENTRY_WORKFLOW_CHANGED = "form.entry.workflow.changed";
038    
039    /** Argument name for processed form entry id */
040    public static final String ARGS_FORM_ENTRY_ID = "form.entry.id";
041    /** Argument name for processed form entry ids */
042    public static final String ARGS_FORM_ENTRY_IDS = "form.entry.ids";
043}