com.sun.xml.ws.developer.StreamingAttachment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rt Show documentation
Show all versions of rt Show documentation
JAX-WS Reference Implementation Runtime
The newest version!
/*
* Copyright (c) 1997, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package com.sun.xml.ws.developer;
import jakarta.xml.ws.spi.WebServiceFeatureAnnotation;
import java.lang.annotation.*;
import java.io.File;
/**
* This feature represents the use of StreamingAttachment attachments with a
* web service.
*
*
* for e.g.: To keep all MIME attachments in memory, do the following
*
*
* @WebService
* @MIME(memoryThreshold=-1L)
* public class HelloService {
* }
*
*
* @see StreamingAttachmentFeature
*
* @author Jitendra Kotamraju
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.METHOD, ElementType.FIELD})
@Documented
@WebServiceFeatureAnnotation(id = StreamingAttachmentFeature.ID, bean = StreamingAttachmentFeature.class)
public @interface StreamingAttachment {
/**
* Directory in which large attachments are stored. {@link File#createTempFile}
* methods are used to create temp files for storing attachments. This
* value is used in {@link File#createTempFile}, if specified. If a file
* cannot be created in this dir, then all the content is kept in memory.
*/
String dir() default "";
/**
* MIME message is parsed eagerly.
*/
boolean parseEagerly() default false;
/**
* After this threshold(no of bytes per attachment), large attachment is
* written to file system.
*
* If the value is -1, then all the attachment content is kept in memory.
*/
long memoryThreshold() default 1048576L;
}