001/* 002 * Copyright 2016 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.userdirectory.observation; 017 018/** 019 * Observation constants for User Directory plugin 020 */ 021public interface ObservationConstants 022{ 023 /** Event id when a user directory root page is being deleted. */ 024 public static final String EVENT_USER_DIRECTORY_ROOT_DELETING = "user.directory.root.deleting"; 025 /** Event id when a user directory root page is deleted. */ 026 public static final String EVENT_USER_DIRECTORY_ROOT_DELETED = "user.directory.root.deleted"; 027 /** Event id when a user directory root page is being updated. */ 028 public static final String EVENT_USER_DIRECTORY_ROOT_UPDATING = "user.directory.root.updating"; 029 /** Event id when a user directory root page is updated. */ 030 public static final String EVENT_USER_DIRECTORY_ROOT_UPDATED = "user.directory.root.updated"; 031 /** Event id when a user directory page is changed. */ 032 public static final String EVENT_USER_DIRECTORY_ROOT_CHANGED = "user.directory.root.changed"; 033 034 /** Event id when a organisation chart root page is being deleted. */ 035 public static final String EVENT_ORGANISATION_CHART_ROOT_DELETING = "organisation.chart.root.deleting"; 036 /** Event id when a organisation chart root page is deleted. */ 037 public static final String EVENT_ORGANISATION_CHART_ROOT_DELETED = "organisation.chart.root.deleted"; 038 /** Event id when a organisation chart root page is being updated. */ 039 public static final String EVENT_ORGANISATION_CHART_ROOT_UPDATING = "organisation.chart.root.updating"; 040 /** Event id when a organisation chart root page is updated. */ 041 public static final String EVENT_ORGANISATION_CHART_ROOT_UPDATED = "organisation.chart.root.updated"; 042 /** Event id when a organisation chart page is changed. */ 043 public static final String EVENT_ORGANISATION_CHART_ROOT_CHANGED = "organisation.chart.root.changed"; 044 045 /** Argument's name for update of user content view */ 046 public static final String ARGS_USER_CONTENT_VIEW_UPDATED = "user.content.view.updated"; 047}