Github user markap14 commented on a diff in the pull request:

    https://github.com/apache/nifi/pull/200#discussion_r51602747
  
    --- Diff: 
nifi-nar-bundles/nifi-amqp-bundle/nifi-amqp-processors/src/main/java/org/apache/nifi/amqp/processors/AMQPUtils.java
 ---
    @@ -0,0 +1,115 @@
    +/*
    + * Licensed to the Apache Software Foundation (ASF) under one or more
    + * contributor license agreements.  See the NOTICE file distributed with
    + * this work for additional information regarding copyright ownership.
    + * The ASF licenses this file to You 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.apache.nifi.amqp.processors;
    +
    +import java.lang.reflect.Method;
    +import java.lang.reflect.Modifier;
    +import java.util.Arrays;
    +import java.util.HashMap;
    +import java.util.List;
    +import java.util.Map;
    +
    +import org.apache.nifi.flowfile.FlowFile;
    +import org.apache.nifi.processor.ProcessSession;
    +import org.slf4j.Logger;
    +import org.slf4j.LoggerFactory;
    +
    +import com.rabbitmq.client.AMQP.BasicProperties;
    +
    +/**
    + * Utility helper class simplify interructions with target AMQP API and 
NIFI
    + * API.
    + *
    + */
    +abstract class AMQPUtils {
    +
    +    public final static String AMQP_PROP_DELIMITER = "$";
    +
    +    public final static String AMQP_PROP_PREFIX = "amqp" + 
AMQP_PROP_DELIMITER;
    +
    +    private final static Logger logger = 
LoggerFactory.getLogger(AMQPUtils.class);
    +
    +    private final static List<String> propertyNames = 
Arrays.asList("amqp$contentType", "amqp$contentEncoding",
    --- End diff --
    
    When ConsumeAMQP creates a FlowFile with an attribute named 
'amqp$contentType' - we should consider also writing that value to the 
'mime.type' attribute, as this is the 'standard attribute' that we use to 
determine the content type. This is used, for instance, by some of the Content 
Viewers. So if it's text/json, for example, we know how to render that if 
viewing content via Provenance.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to