source: contrib/MailArchiver/sources/vendor/mime4j/custom/core/src/main/java/org/apache/james/mime4j/stream/RawBody.java @ 6785

Revision 6785, 2.1 KB checked in by rafaelraymundo, 12 years ago (diff)

Ticket #2946 - Liberado codigo do MailArchiver?. Documentação na subpasta DOCS.

Line 
1/****************************************************************
2 * Licensed to the Apache Software Foundation (ASF) under one   *
3 * or more contributor license agreements.  See the NOTICE file *
4 * distributed with this work for additional information        *
5 * regarding copyright ownership.  The ASF licenses this file   *
6 * to you under the Apache License, Version 2.0 (the            *
7 * "License"); you may not use this file except in compliance   *
8 * with the License.  You may obtain a copy of the License at   *
9 *                                                              *
10 *   http://www.apache.org/licenses/LICENSE-2.0                 *
11 *                                                              *
12 * Unless required by applicable law or agreed to in writing,   *
13 * software distributed under the License is distributed on an  *
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY       *
15 * KIND, either express or implied.  See the License for the    *
16 * specific language governing permissions and limitations      *
17 * under the License.                                           *
18 ****************************************************************/
19
20package org.apache.james.mime4j.stream;
21
22import java.util.ArrayList;
23import java.util.List;
24
25public final class RawBody {
26
27    private final String value;
28    private final List<NameValuePair> params;
29
30    RawBody(final String value, final List<NameValuePair> params) {
31        if (value == null) {
32            throw new IllegalArgumentException("Field value not be null");
33        }
34        this.value = value;
35        this.params = params != null ? params : new ArrayList<NameValuePair>();
36    }
37
38    public String getValue() {
39        return this.value;
40    }
41
42    public List<NameValuePair> getParams() {
43        return new ArrayList<NameValuePair>(this.params);
44    }
45
46    @Override
47    public String toString() {
48        StringBuilder buf = new StringBuilder();
49        buf.append(this.value);
50        buf.append("; ");
51        for (NameValuePair param: this.params) {
52            buf.append("; ");
53            buf.append(param);
54        }
55        return buf.toString();
56    }
57
58}
Note: See TracBrowser for help on using the repository browser.