added getters and setters

pull/306/merge
Justin Richer 2013-03-14 11:14:41 -04:00
parent 4dedec76ec
commit 2be305810f
1 changed files with 14 additions and 0 deletions

View File

@ -73,4 +73,18 @@ public class SignedAuthRequestUrlBuilder implements AuthRequestUrlBuilder {
}
}
/**
* @return the signingAndValidationService
*/
public JwtSigningAndValidationService getSigningAndValidationService() {
return signingAndValidationService;
}
/**
* @param signingAndValidationService the signingAndValidationService to set
*/
public void setSigningAndValidationService(JwtSigningAndValidationService signingAndValidationService) {
this.signingAndValidationService = signingAndValidationService;
}
}