~ubuntu-branches/ubuntu/saucy/restlet/saucy

« back to all changes in this revision

Viewing changes to org.restlet.ext.jaxrs/src/org/restlet/ext/jaxrs/internal/spi/CacheControlHeaderDelegate.java

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2012-06-11 16:25:45 UTC
  • Revision ID: package-import@ubuntu.com-20120611162545-5w2o0resi5y3pybc
Tags: upstream-2.0.14
ImportĀ upstreamĀ versionĀ 2.0.14

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * Copyright 2005-2012 Restlet S.A.S.
 
3
 * 
 
4
 * The contents of this file are subject to the terms of one of the following
 
5
 * open source licenses: Apache 2.0 or LGPL 3.0 or LGPL 2.1 or CDDL 1.0 or EPL
 
6
 * 1.0 (the "Licenses"). You can select the license that you prefer but you may
 
7
 * not use this file except in compliance with one of these Licenses.
 
8
 * 
 
9
 * You can obtain a copy of the Apache 2.0 license at
 
10
 * http://www.opensource.org/licenses/apache-2.0
 
11
 * 
 
12
 * You can obtain a copy of the LGPL 3.0 license at
 
13
 * http://www.opensource.org/licenses/lgpl-3.0
 
14
 * 
 
15
 * You can obtain a copy of the LGPL 2.1 license at
 
16
 * http://www.opensource.org/licenses/lgpl-2.1
 
17
 * 
 
18
 * You can obtain a copy of the CDDL 1.0 license at
 
19
 * http://www.opensource.org/licenses/cddl1
 
20
 * 
 
21
 * You can obtain a copy of the EPL 1.0 license at
 
22
 * http://www.opensource.org/licenses/eclipse-1.0
 
23
 * 
 
24
 * See the Licenses for the specific language governing permissions and
 
25
 * limitations under the Licenses.
 
26
 * 
 
27
 * Alternatively, you can obtain a royalty free commercial license with less
 
28
 * limitations, transferable or non-transferable, directly at
 
29
 * http://www.restlet.com/products/restlet-framework
 
30
 * 
 
31
 * Restlet is a registered trademark of Restlet S.A.S.
 
32
 */
 
33
 
 
34
package org.restlet.ext.jaxrs.internal.spi;
 
35
 
 
36
import java.util.List;
 
37
 
 
38
import javax.ws.rs.core.CacheControl;
 
39
import javax.ws.rs.ext.RuntimeDelegate;
 
40
import javax.ws.rs.ext.RuntimeDelegate.HeaderDelegate;
 
41
 
 
42
import org.restlet.data.CacheDirective;
 
43
import org.restlet.engine.http.header.CacheDirectiveReader;
 
44
import org.restlet.engine.http.header.CacheDirectiveWriter;
 
45
import org.restlet.ext.jaxrs.internal.util.Converter;
 
46
 
 
47
/**
 
48
 * {@link HeaderDelegate} for {@link CacheControl}.
 
49
 * 
 
50
 * @author Stephan Koops
 
51
 */
 
52
public class CacheControlHeaderDelegate implements HeaderDelegate<CacheControl> {
 
53
 
 
54
    /**
 
55
     * Obtain an instance of a HeaderDelegate for the CacheControl class.
 
56
     * 
 
57
     * @see RuntimeDelegate#createHeaderDelegate(Class)
 
58
     */
 
59
    CacheControlHeaderDelegate() {
 
60
    }
 
61
 
 
62
    /**
 
63
     * Parse the supplied value and create an instance of <code>T</code>.
 
64
     * 
 
65
     * @param value
 
66
     *            the string value
 
67
     * @return the newly created instance of <code>T</code>
 
68
     * @throws IllegalArgumentException
 
69
     *             if the supplied string cannot be parsed
 
70
     * @see javax.ws.rs.ext.RuntimeDelegate.HeaderDelegate#fromString(java.lang.String)
 
71
     */
 
72
    public CacheControl fromString(String value)
 
73
            throws IllegalArgumentException {
 
74
        CacheDirectiveReader ccr = new CacheDirectiveReader(value);
 
75
        List<CacheDirective> cacheDirectives = ccr.readValues();
 
76
        return Converter.toJaxRsCacheControl(cacheDirectives);
 
77
    }
 
78
 
 
79
    /**
 
80
     * Convert the supplied value to a String.
 
81
     * 
 
82
     * @param value
 
83
     *            the value of type <code>T</code>
 
84
     * @return a String representation of the value
 
85
     * @throws IllegalArgumentException
 
86
     *             if the supplied object cannot be serialized
 
87
     * @see javax.ws.rs.ext.RuntimeDelegate.HeaderDelegate#toString(java.lang.Object)
 
88
     */
 
89
    public String toString(CacheControl cacheControl) {
 
90
        List<CacheDirective> directives = Converter
 
91
                .toRestletCacheDirective(cacheControl);
 
92
        return CacheDirectiveWriter.write(directives);
 
93
    }
 
94
}