All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.efaps.admin.event.Parameter Maven / Gradle / Ivy

Go to download

eFaps is a framework used to map objects with or without attached files to a relational database and optional file systems (only for attaches files). Configurable access control can be provided down to object and attribute level depending on implementation and use case. Depending on requirements, events (like triggers) allow to implement business logic and to separate business logic from user interface. The framework includes integrations (e.g. webdav, full text search) and a web application as 'simple' configurable user interface. Some best practises, example web application modules (e.g. team work module) support administrators and implementers using this framework.

There is a newer version: 3.2.0
Show newest version
/*
 * Copyright 2003 - 2012 The eFaps Team
 *
 * 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.
 *
 * Revision:        $Rev: 7483 $
 * Last Changed:    $Date: 2012-05-11 11:57:38 -0500 (Fri, 11 May 2012) $
 * Last Changed By: $Author: [email protected] $
 */

package org.efaps.admin.event;

import java.util.HashMap;
import java.util.Map;
import java.util.Set;

import org.apache.commons.lang.builder.ToStringBuilder;
import org.efaps.db.Instance;

/**
 * Class witch is used for parsing Parameters to the Events.
 *
 * @author The eFaps Team
 * @version $Id: Parameter.java 7483 2012-05-11 16:57:38Z [email protected] $
 */
public class Parameter
{

    /**
     * This enum holds the definitions of Parameters, to be accessed.
     */
    public enum ParameterValues
    {
        /**
         * Holds an AccessType, used for AccessCheck-Programs.
         */
        ACCESSTYPE,
        /**
         * Holds the mode of the access for the ui.
         */
        ACCESSMODE,
        /**
         * Call instance, means
         * 
    *
  • for a web table, the instance for which the table values are * evaluated
  • *
  • for a web form, on which the web form is executed (if exists); * e.g. in edit mode it is the instance of the called object
  • *
  • for a command the instance on which the command was executed
  • *
*/ CALL_INSTANCE, /** * The cmd that initiated the call. (e.g. The cmd that opened the form) */ CALL_CMD, /** * Contains the class that called the esjp. */ CLASS, /** * Contains a list of classifcations. */ CLASSIFICATIONS, /** * Holds an Instance. * */ INSTANCE, /** * Holds the new Values for an Instance, used e.g. by Creation of a new * Object */ NEW_VALUES, /** * Holds an Map used to obfuscate the oids for presentation in the UserInterface. */ OIDMAP4UI, /** * Further Parameters as map (key is string, value is string array), * e.g. from called form, command etc. */ PARAMETERS, /** * Holds the Properties of the trigger. */ PROPERTIES, /** * Place mark for additional Informations. */ OTHERS, /** * Instances that where retrieved in the same request as the instance. */ REQUEST_INSTANCES, /** * Holds the UserInterfaceObject on which the event is called. */ UIOBJECT; } /** * Map used as the store for this Parameter. */ private final Map map = new HashMap(); /** * Put an object into the underlying map. * * @param _key key to the object * @param _value object */ public void put(final ParameterValues _key, final Object _value) { this.map.put(_key, _value); } /** * Method to get an object from the underlying map. * * @param _key key to the object * @return object from the underlying map */ public Object get(final ParameterValues _key) { return this.map.get(_key); } /** * Returns the value of map with the key * {@link ParameterValues#CALL_INSTANCE}. * * @return call instance of this parameter; or if not defined * null */ public Instance getCallInstance() { return (Instance) this.map.get(Parameter.ParameterValues.CALL_INSTANCE); } /** * Returns the value of map with the key {@link ParameterValues#INSTANCE}. * * @return instance of this parameter; or if not defined null */ public Instance getInstance() { return (Instance) this.map.get(Parameter.ParameterValues.INSTANCE); } /** * Returns the value of map with the key {@link ParameterValues#PARAMETERS}. * * @return further parameters of this parameter; or if not defined * null */ @SuppressWarnings("unchecked") public Map getParameters() { return (Map) this.map.get(Parameter.ParameterValues.PARAMETERS); } /** * Evaluates with given key in the list of all parameters for given key and * returns them (if found) as string array. If not found a null * is returned. * * @param _key name of parameter values which should returned * @return array of parameter values for given key of null if * not exists * @see #getParameters to get the map of parameters */ public String[] getParameterValues(final String _key) { final Map params = getParameters(); return (params != null) ? params.get(_key) : null; } /** * Evaluates with given key in the list of all parameters for given key and * returns them (if found) as string with index 0 in the string array of the * parameter values. If not found a null is returned. * * @param _key name of parameter value which should returned * @return value for given key or null if not exists * @see #getParameterValues to get the string array for given key */ public String getParameterValue(final String _key) { final String[] paramValues = getParameterValues(_key); return ((paramValues != null) && (paramValues.length > 0)) ? paramValues[0] : null; } /** * Method to get the entry set of the underlying map. * * @return entry set */ public Set entrySet() { return this.map.entrySet(); } /** * Returns a string representation of this parameter instance. * * @return string representation of this parameter instance. */ @Override public String toString() { return new ToStringBuilder(this).appendSuper(super.toString()).append("map", this.map.toString()).toString(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy