if (id == 321) {
returnCode = 525;
} else if (id == 322) {
BookNotFoundDetails details = new BookNotFoundDetails();
details.setId(id);
throw new BookNotFoundFault(details);
}
String msg = "No Book with id " + id + " is available";
ResponseBuilder builder = Response.status(returnCode).header("BOOK-HEADER", msg);
if (returnCode == 404) {