Consulente per la sicurezza sui luoghi di lavoro: come trovare consulenti della sicurezza
Come Trovare un Consulente per la Sicurezza sui Luoghi di Lavoro.
Trovare un Consulente per la Sicurezza sui Luoghi di Lavoro: Come Fare.
Scopri come trovare un consulente esperto per la sicurezza sui luoghi di lavoro, fondamentale per garantire un ambiente sicuro e conforme alla normativa. In questo articolo, esploreremo i criteri da considerare nella scelta del professionista e l'importanza di una consulenza adeguata per la tua azienda.
Trova professionisti vicino a te
Trova professionisti
/*
* Copyright 2014-2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/
package org.dbflute.intro.app.web.doc.disp;
import java.util.List;
import javax.annotation.Resource;
import org.dbflute.intro.app.logic.doc.DfDocMetaInfoLogic;
import org.dbflute.intro.app.model.client.document.DocumentMap;
import org.dbflute.intro.app.web.base.IntroBaseAction;
import org.lastaflute.web.Execute;
import org.lastaflute.web.response.JsonResponse;
/**
* @author deco
* @author jflute
*/
public class DocDispAction extends IntroBaseAction {
// ===================================================================================
// Attribute
// =========
@Resource
private DfDocMetaInfoLogic docMetaInfoLogic;
// ===================================================================================
// Hook
// ======
// to suppress unexpected override by sub class
@Override
public final void hookFinally(final JsonResponse response) {
}
// ===================================================================================
// Execute
// =======
@Execute
public JsonResponse index() {
List documentMapList = docMetaInfoLogic.getDocumentMapList();
return asJson(documentMapList);
}
}