@@ -251,6 +257,205 @@ public class NotificationsApi extends AbstractXnatRestApi {
returngetSmtpServerProperties();
}
@ApiOperation(value="Sets the email message for contacting help.",notes="Sets the email message that people should receive when contacting help.",response=String.class)
@ApiResponses({@ApiResponse(code=200,message="Help email message successfully set."),@ApiResponse(code=401,message="Must be authenticated to access the XNAT REST API."),@ApiResponse(code=403,message="Not authorized to set the help email message."),@ApiResponse(code=500,message="Unexpected error")})
publicResponseEntity<Void>setHelpContactInfo(@ApiParam(value="The email message for contacting help.",required=true)@RequestParamfinalStringmessage){
_siteConfigPrefs.setHelpContactInfo(message);
returnnewResponseEntity<>(HttpStatus.OK);
}
@ApiOperation(value="Sets the email message for user registration.",notes="Sets the email message that people should receive when they register. Link for email validation is auto-populated.",response=String.class)
@ApiResponses({@ApiResponse(code=200,message="User registration email message successfully set."),@ApiResponse(code=401,message="Must be authenticated to access the XNAT REST API."),@ApiResponse(code=403,message="Not authorized to set the user registration email message."),@ApiResponse(code=500,message="Unexpected error")})
publicResponseEntity<Properties>setEmailMessageUserRegistration(@ApiParam(value="The email message for user registration.",required=true)@RequestParamfinalStringmessage){
@ApiOperation(value="Sets the email message for forgot username.",notes="Sets the email message that people should receive when they click that they forgot their username.",response=String.class)
@ApiResponses({@ApiResponse(code=200,message="Forgot username email message successfully set."),@ApiResponse(code=401,message="Must be authenticated to access the XNAT REST API."),@ApiResponse(code=403,message="Not authorized to set the forgot username email message."),@ApiResponse(code=500,message="Unexpected error")})
@ApiOperation(value="Sets the email message for password reset.",notes="Sets the email message that people should receive when they click to reset their password. Link for password reset is auto-populated.",response=String.class)
@ApiResponses({@ApiResponse(code=200,message="Password reset message successfully set."),@ApiResponse(code=401,message="Must be authenticated to access the XNAT REST API."),@ApiResponse(code=403,message="Not authorized to set the password reset message."),@ApiResponse(code=500,message="Unexpected error")})
@ApiOperation(value="Returns the email message for contacting help.",notes="This returns the email message that people should receive when contacting help.",response=String.class)
@ApiResponses({@ApiResponse(code=200,message="Email message for contacting help successfully returned."),@ApiResponse(code=401,message="Must be authenticated to access the XNAT REST API."),@ApiResponse(code=403,message="Not authorized to get email message for contacting help."),@ApiResponse(code=500,message="Unexpected error")})
@ApiOperation(value="Returns the email message for user registration.",notes="This returns the email message that people should receive when they register. Link for email validation is auto-populated.",response=String.class)
@ApiResponses({@ApiResponse(code=200,message="Email message for user registration successfully returned."),@ApiResponse(code=401,message="Must be authenticated to access the XNAT REST API."),@ApiResponse(code=403,message="Not authorized to get email message for user registration."),@ApiResponse(code=500,message="Unexpected error")})
@ApiOperation(value="Returns the email message for forgot username.",notes="This returns the email message that people should receive when they click that they forgot their username.",response=String.class)
@ApiResponses({@ApiResponse(code=200,message="Email message for forgot username successfully returned."),@ApiResponse(code=401,message="Must be authenticated to access the XNAT REST API."),@ApiResponse(code=403,message="Not authorized to get email message for forgot username."),@ApiResponse(code=500,message="Unexpected error")})
@ApiOperation(value="Returns the email message for password reset.",notes="This returns the email message that people should receive when they click to reset their password. Link for password reset is auto-populated.",response=String.class)
@ApiResponses({@ApiResponse(code=200,message="Email message for password reset successfully returned."),@ApiResponse(code=401,message="Must be authenticated to access the XNAT REST API."),@ApiResponse(code=403,message="Not authorized to get email message for password reset."),@ApiResponse(code=500,message="Unexpected error")})
@ApiOperation(value="Sets whether admins should be notified of user registration.",notes="Sets whether admins should be notified of user registration.",response=String.class)
@ApiResponses({@ApiResponse(code=200,message="Whether admins should be notified of user registration successfully set."),@ApiResponse(code=401,message="Must be authenticated to access the XNAT REST API."),@ApiResponse(code=403,message="Not authorized to set whether admins should be notified of user registration."),@ApiResponse(code=500,message="Unexpected error")})
publicResponseEntity<Void>setNotifyAdminUserRegistration(@ApiParam(value="Whether admins should be notified of user registration successfully set.",required=true)@RequestParamfinalbooleannotify){
@ApiOperation(value="Sets whether admins should be notified of pipeline processing submit.",notes="Sets whether admins should be notified of pipeline processing submit.",response=String.class)
@ApiResponses({@ApiResponse(code=200,message="Whether admins should be notified of pipeline processing submit successfully set."),@ApiResponse(code=401,message="Must be authenticated to access the XNAT REST API."),@ApiResponse(code=403,message="Not authorized to set whether admins should be notified of pipeline processing submit."),@ApiResponse(code=500,message="Unexpected error")})
publicResponseEntity<Properties>setNotifyAdminPipelineEmails(@ApiParam(value="Whether admins should be notified of pipeline processing submit successfully set.",required=true)@RequestParamfinalbooleannotify){
@ApiOperation(value="Sets whether admins should be notified of project access requests.",notes="Sets whether admins should be notified of project access requests.",response=String.class)
@ApiResponses({@ApiResponse(code=200,message="Whether admins should be notified of project access requests successfully set."),@ApiResponse(code=401,message="Must be authenticated to access the XNAT REST API."),@ApiResponse(code=403,message="Not authorized to set whether admins should be notified of project access requests."),@ApiResponse(code=500,message="Unexpected error")})
publicResponseEntity<Properties>setNotifyAdminProjectAccessRequest(@ApiParam(value="Whether admins should be notified of project access requests successfully set.",required=true)@RequestParamfinalbooleannotify){
@ApiOperation(value="Sets whether admins should be notified of session transfer.",notes="Sets whether admins should be notified of session transfer by user.",response=String.class)
@ApiResponses({@ApiResponse(code=200,message="Whether admins should be notified of session transfer successfully set."),@ApiResponse(code=401,message="Must be authenticated to access the XNAT REST API."),@ApiResponse(code=403,message="Not authorized to set whether admins should be notified of session transfer."),@ApiResponse(code=500,message="Unexpected error")})
publicResponseEntity<Properties>setNotifyAdminSessionTransfer(@ApiParam(value="Whether admins should be notified of session transfer successfully set.",required=true)@RequestParamfinalbooleannotify){
@ApiOperation(value="Returns whether admins should be notified of user registration.",notes="This returns whether admins should be notified of user registration.",response=Boolean.class)
@ApiResponses({@ApiResponse(code=200,message="Email message for contacting help successfully returned."),@ApiResponse(code=401,message="Must be authenticated to access the XNAT REST API."),@ApiResponse(code=403,message="Not authorized to get email message for contacting help."),@ApiResponse(code=500,message="Unexpected error")})
@ApiOperation(value="Returns whether admins should be notified of pipeline processing submit.",notes="This returns whether admins should be notified of pipeline processing submit.",response=Boolean.class)
@ApiResponses({@ApiResponse(code=200,message="Email message for user registration successfully returned."),@ApiResponse(code=401,message="Must be authenticated to access the XNAT REST API."),@ApiResponse(code=403,message="Not authorized to get email message for user registration."),@ApiResponse(code=500,message="Unexpected error")})
@ApiOperation(value="Returns whether admins should be notified of project access requests.",notes="This returns whether admins should be notified of project access requests.",response=Boolean.class)
@ApiResponses({@ApiResponse(code=200,message="Email message for forgot username successfully returned."),@ApiResponse(code=401,message="Must be authenticated to access the XNAT REST API."),@ApiResponse(code=403,message="Not authorized to get email message for forgot username."),@ApiResponse(code=500,message="Unexpected error")})
@ApiOperation(value="Returns whether admins should be notified of session transfer.",notes="This returns whether admins should be notified of session transfer.",response=Boolean.class)
@ApiResponses({@ApiResponse(code=200,message="Email message for password reset successfully returned."),@ApiResponse(code=401,message="Must be authenticated to access the XNAT REST API."),@ApiResponse(code=403,message="Not authorized to get email message for password reset."),@ApiResponse(code=500,message="Unexpected error")})
@ApiOperation(value="Sets whether non-users should be able to subscribe to notifications.",notes="Sets whether non-users should be able to subscribe to notifications.",response=String.class)
@ApiResponses({@ApiResponse(code=200,message="Whether non-users should be able to subscribe to notifications."),@ApiResponse(code=401,message="Must be authenticated to access the XNAT REST API."),@ApiResponse(code=403,message="Not authorized to set whether non-users should be able to subscribe to notifications."),@ApiResponse(code=500,message="Unexpected error")})
publicResponseEntity<Properties>setEmailAllowNonuserSubscribers(@ApiParam(value="Whether non-users should be able to subscribe to notifications.",required=true)@PathVariablefinalbooleansetting){
@ApiOperation(value="Returns whether non-users should be able to subscribe to notifications.",notes="This returns whether non-users should be able to subscribe to notifications.",response=Boolean.class)
@ApiResponses({@ApiResponse(code=200,message="Whether non-users should be able to subscribe to notifications successfully returned."),@ApiResponse(code=401,message="Must be authenticated to access the XNAT REST API."),@ApiResponse(code=403,message="Not authorized to get whether non-users should be able to subscribe to notifications."),@ApiResponse(code=500,message="Unexpected error")})
@ApiOperation(value="Sets the email addresses for error notifications.",notes="Sets the email addresses that should be subscribed to error notifications.",response=Properties.class)
@ApiResponses({@ApiResponse(code=200,message="Error subscribers successfully set."),@ApiResponse(code=401,message="Must be authenticated to access the XNAT REST API."),@ApiResponse(code=403,message="Not authorized to set the error subscribers."),@ApiResponse(code=500,message="Unexpected error")})
publicResponseEntity<Void>setErrorSubscribers(@ApiParam(value="The values to set for email addresses for error notifications.",required=true)@RequestParamfinalStringsubscribers){
@ApiOperation(value="Sets the email addresses for issue notifications.",notes="Sets the email addresses that should be subscribed to issue notifications.",response=Properties.class)
@ApiResponses({@ApiResponse(code=200,message="Issue subscribers successfully set."),@ApiResponse(code=401,message="Must be authenticated to access the XNAT REST API."),@ApiResponse(code=403,message="Not authorized to set the issue subscribers."),@ApiResponse(code=500,message="Unexpected error")})
publicResponseEntity<Properties>setIssueSubscribers(@ApiParam(value="The values to set for email addresses for issue notifications.",required=true)@RequestParamfinalStringsubscribers){
@ApiOperation(value="Sets the email addresses for new user notifications.",notes="Sets the email addresses that should be subscribed to new user notifications.",response=Properties.class)
@ApiResponses({@ApiResponse(code=200,message="New user subscribers successfully set."),@ApiResponse(code=401,message="Must be authenticated to access the XNAT REST API."),@ApiResponse(code=403,message="Not authorized to set the new user subscribers."),@ApiResponse(code=500,message="Unexpected error")})
publicResponseEntity<Properties>setNewUserSubscribers(@ApiParam(value="The values to set for email addresses for new user notifications.",required=true)@RequestParamfinalStringsubscribers){
@ApiOperation(value="Sets the email addresses for update notifications.",notes="Sets the email addresses that should be subscribed to update notifications.",response=Properties.class)
@ApiResponses({@ApiResponse(code=200,message="Update subscribers successfully set."),@ApiResponse(code=401,message="Must be authenticated to access the XNAT REST API."),@ApiResponse(code=403,message="Not authorized to set the update subscribers."),@ApiResponse(code=500,message="Unexpected error")})
publicResponseEntity<Properties>setUpdateSubscribers(@ApiParam(value="The values to set for email addresses for update notifications.",required=true)@RequestParamfinalStringsubscribers){
@ApiOperation(value="Returns list of email addresses subscribed to error notifications.",notes="This returns a list of all the email addresses that are subscribed to receive error notifications.",response=String.class)
@ApiResponses({@ApiResponse(code=200,message="Error notification subscribers successfully returned."),@ApiResponse(code=401,message="Must be authenticated to access the XNAT REST API."),@ApiResponse(code=403,message="Not authorized to get subscribers for email notifications."),@ApiResponse(code=500,message="Unexpected error")})
@ApiOperation(value="Returns list of email addresses subscribed to issue notifications.",notes="This returns a list of all the email addresses that are subscribed to receive issue notifications.",response=String.class)
@ApiResponses({@ApiResponse(code=200,message="Issue notification subscribers successfully returned."),@ApiResponse(code=401,message="Must be authenticated to access the XNAT REST API."),@ApiResponse(code=403,message="Not authorized to get subscribers for email notifications."),@ApiResponse(code=500,message="Unexpected error")})
@ApiOperation(value="Returns list of email addresses subscribed to new user notifications.",notes="This returns a list of all the email addresses that are subscribed to receive new user notifications.",response=String.class)
@ApiResponses({@ApiResponse(code=200,message="New user notification subscribers successfully returned."),@ApiResponse(code=401,message="Must be authenticated to access the XNAT REST API."),@ApiResponse(code=403,message="Not authorized to get subscribers for email notifications."),@ApiResponse(code=500,message="Unexpected error")})
@ApiOperation(value="Returns list of email addresses subscribed to update notifications.",notes="This returns a list of all the email addresses that are subscribed to receive update notifications.",response=String.class)
@ApiResponses({@ApiResponse(code=200,message="Update notification subscribers successfully returned."),@ApiResponse(code=401,message="Must be authenticated to access the XNAT REST API."),@ApiResponse(code=403,message="Not authorized to get subscribers for email notifications."),@ApiResponse(code=500,message="Unexpected error")})