src/main/java/com/aliyun/oss/model/ObjectFile.java [263:284]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String getCacheControl() {
        return cacheControl;
    }

    public void setCacheControl(String cacheControl) {
        this.cacheControl = cacheControl;
    }

    public String getContentDisposition() {
        return contentDisposition;
    }

    public void setContentDisposition(String contentDisposition) {
        this.contentDisposition = contentDisposition;
    }

    public String getContentEncoding() {
        return contentEncoding;
    }

    public void setContentEncoding(String contentEncoding) {
        this.contentEncoding = contentEncoding;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/aliyun/oss/model/ResponseHeaderOverrides.java [107:156]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String getCacheControl() {
        return cacheControl;
    }

    /**
     * Sets the Cache-Control header.
     * 
     * @param cacheControl
     *            The override Cache-Control header.
     */
    public void setCacheControl(String cacheControl) {
        this.cacheControl = cacheControl;
    }

    /**
     * Gets the Content-Disposition header. If it's not specified, return null.
     * 
     * @return The override Content-Disposition header.
     */
    public String getContentDisposition() {
        return contentDisposition;
    }

    /**
     * Sets the Content-Disposition header.
     * 
     * @param contentDisposition
     *            The override Content-Disposition header.
     */
    public void setContentDisposition(String contentDisposition) {
        this.contentDisposition = contentDisposition;
    }

    /**
     * Gets the Content-Encoding header.
     * 
     * @return The override Content-Encoding header.
     */
    public String getContentEncoding() {
        return contentEncoding;
    }

    /**
     * Sets the Content-Encoding header.
     * 
     * @param contentEncoding
     *            The override Content-Encoding header.
     */
    public void setContentEncoding(String contentEncoding) {
        this.contentEncoding = contentEncoding;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



