/* * Copyright (c) 2005 - 2014, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. * * 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.wso2.carbon.event.receiver.admin.internal; import org.wso2.carbon.databridge.commons.AttributeType; import org.wso2.carbon.event.receiver.core.config.EventReceiverConstants; import java.util.Collections; import java.util.HashMap; import java.util.Map; @SuppressWarnings("unchecked") public class EventReceiverAdminConstants { public static final String ATTR_TYPE_FLOAT = "float"; public static final String ATTR_TYPE_DOUBLE = "double"; public static final String ATTR_TYPE_INTEGER = "int"; public static final String ATTR_TYPE_LONG = "long"; public static final String ATTR_TYPE_STRING = "string"; public static final String ATTR_TYPE_BOOL = "bool"; public static final Map<String, AttributeType> STRING_ATTRIBUTE_TYPE_MAP = Collections.unmodifiableMap(new HashMap<String, AttributeType>() {{ put(ATTR_TYPE_BOOL, AttributeType.BOOL); put(ATTR_TYPE_STRING, AttributeType.STRING); put(ATTR_TYPE_DOUBLE, AttributeType.DOUBLE); put(ATTR_TYPE_FLOAT, AttributeType.FLOAT); put(ATTR_TYPE_INTEGER, AttributeType.INT); put(ATTR_TYPE_LONG, AttributeType.LONG); }}); public static final String PROPERTY_META_PREFIX = "meta_"; public static final String PROPERTY_CORRELATION_PREFIX = "correlation_"; public static final Map<AttributeType, String> ATTRIBUTE_TYPE_STRING_MAP = Collections.unmodifiableMap(new HashMap<AttributeType, String>() {{ put(AttributeType.BOOL, EventReceiverConstants.ATTR_TYPE_BOOL); put(AttributeType.STRING, EventReceiverConstants.ATTR_TYPE_STRING); put(AttributeType.DOUBLE, EventReceiverConstants.ATTR_TYPE_DOUBLE); put(AttributeType.FLOAT, EventReceiverConstants.ATTR_TYPE_FLOAT); put(AttributeType.INT, EventReceiverConstants.ATTR_TYPE_INT); put(AttributeType.LONG, EventReceiverConstants.ATTR_TYPE_LONG); }}); }