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 Port number that it will listen on (bound at
 *    Server creation time). 
 */
@Retention(RetentionPolicy.RUNTIME)
public @interface Port{
}