Searched refs:memoryThreshold (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DMIMEConfig.java49 long memoryThreshold; field in class:MIMEConfig
64 this.memoryThreshold = inMemoryThreshold;
92 return memoryThreshold;
99 * @param memoryThreshold no of bytes per attachment
102 public void setMemoryThreshold(long memoryThreshold) { argument
103 this.memoryThreshold = memoryThreshold;
107 return memoryThreshold == -1L;
143 memoryThreshold = -1L; // whole attachment will be in-memory
H A DMemoryData.java76 if (!config.isOnlyMemory() && dataHead.inMemory >= config.memoryThreshold) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/developer/
H A DStreamingAttachmentFeature.java66 private long memoryThreshold; field in class:StreamingAttachmentFeature
71 @FeatureConstructor({"dir","parseEagerly","memoryThreshold"})
72 public StreamingAttachmentFeature(@Nullable String dir, boolean parseEagerly, long memoryThreshold) { argument
76 this.memoryThreshold = memoryThreshold;
96 config.setMemoryThreshold(memoryThreshold);
120 public void setMemoryThreshold(long memoryThreshold) { argument
121 this.memoryThreshold = memoryThreshold;
H A DStreamingAttachment.java41 * @MIME(memoryThreshold=-1L)
75 long memoryThreshold() default 1048576L;

Completed in 287 milliseconds