blob: d6c4934a657657236ce16a0fb14edef2ff469cda [file] [log] [blame]
/**
* 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.camel.component.as2.api;
public interface AS2MediaType {
/**
* Media Type for Multipart Signed Data
*/
public static final String MULTIPART_SIGNED = "multipart/signed; protocol=\"application/pkcs7-signature\"";
/**
* Media Type for Application PKCS7 Signature
*/
public static final String APPLICATION_PKCS7_SIGNATURE = "application/pkcs7-signature; name=smime.p7s; smime-type=signed-data";
/**
* Media Type for Application PKCS7 Signature
*/
public static final String APPLICATION_PKCS7_MIME = "application/pkcs7-mime; name=smime.p7m; smime-type=enveloped-data; name=smime.p7m";
/**
* Media Type for Text/Plain Data
*/
public static final String TEXT_PLAIN = "text/plain";
/**
* Media Type for Application/EDIFACT
*/
public static final String APPLICATION_EDIFACT = "application/edifact";
/**
* Media Type for Application/EDI-X12
*/
public static final String APPLICATION_EDI_X12 = "application/edi-x12";
/**
* Media Type for Application/EDI-consent
*/
public static final String APPLICATION_EDI_CONSENT = "application/edi-consent";
}