/* * Copyright (c) 2015, 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.stream.admin.internal.util; import org.wso2.carbon.databridge.commons.AttributeType; import java.util.Collections; import java.util.HashMap; import java.util.Map; public final class EventAttributeTypeConstants { private EventAttributeTypeConstants() { } 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 xmlEvent = "xml"; public static final String jsonEvent = "json"; public static final String textEvent = "text"; }