package edu.neu.ccs.demeterf.http.server; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; /** Used to annotate a field of the Server as representing * the maximum total size of an HTTP Request in Bytes. */ @Retention(RetentionPolicy.RUNTIME) public @interface MaxMessageSize{ }