63646566676869
/** * {@inheritDoc} */ public GracefulShutdownRequest newRequest() { return new GracefulShutdownRequestDecorator( codec, new GracefulShutdownRequestImpl() ); }
858687888990919293
* {@inheritDoc} */ public GracefulShutdownRequest newRequest( byte[] value ) { GracefulShutdownRequestDecorator req = new GracefulShutdownRequestDecorator( codec, new GracefulShutdownRequestImpl() ); req.setRequestValue( value ); return req; }