/******************************************************************************* * Imixs Workflow * Copyright (C) 2001, 2011 Imixs Software Solutions GmbH, * http://www.imixs.com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * 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 * General Public License for more details. * * You can receive a copy of the GNU General Public * License at http://www.gnu.org/licenses/gpl.html * * Project: * http://www.imixs.org * http://java.net/projects/imixs-workflow * * Contributors: * Imixs Software Solutions GmbH - initial API and implementation * Ralph Soika - Software Developer *******************************************************************************/ package org.imixs.marty.config; import java.io.Serializable; import javax.ejb.EJB; import javax.enterprise.context.ApplicationScoped; import javax.inject.Named; import org.imixs.workflow.engine.PropertyService; /** * This PropertyController provides access to the PropertyService EJB. * * @author rsoika * */ @Named @ApplicationScoped public class PropertyController implements Serializable { private static final long serialVersionUID = 1L; @EJB PropertyService propertyService; public PropertyController() { super(); } /** * Returns a property valuer * * @param key * @return */ public String getProperty(String key) { return propertyService.getProperties().getProperty(key); } }