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.joboffer; 017 018/** 019 * Job offer constant 020 * 021 */ 022public interface JobOfferConstants 023{ 024 /** Id of the application content type */ 025 public static final String JOB_APPLICATION_CONTENT_TYPE = "org.ametys.plugins.job-offer.Content.jobApplication"; 026 027 /** Id of the application job offer */ 028 public static final String JOB_OFFER_CONTENT_TYPE = "org.ametys.plugins.job-offer.Content.jobOffer"; 029 030 /** Path of attribute holding the persons in charge */ 031 public static String JOB_OFFER_ATTRIBUTE_PATH_PERSON_IN_CHARGE = "personInCharge"; 032 033 /** Path of attribute holding the persons in charge */ 034 public static String JOB_OFFER_ATTRIBUTE_PATH_CLOSING_DATE = "closingDate"; 035 036 /** Path of attribute holding the persons in charge */ 037 public static String JOB_OFFER_ATTRIBUTE_PATH_APPLICATIONS = "applications"; 038 039 /** Path of attribute holding the job id */ 040 public static String JOB_OFFER_ATTRIBUTE_PATH_REF_ID = "refId"; 041 042 /** Path of attribute holding the job offer */ 043 public static String JOB_APPLICATION_ATTRIBUTE_PATH_JOB_OFFER = "jobOffer"; 044 045 /** Path of attribute holding the the persons in charge */ 046 public static String JOB_APPLICATION_ATTRIBUTE_PATH_PERSON_IN_CHARGE = "jobOffer/personInCharge"; 047}