@@ -54,7 +54,7 @@ pub enum SigningAlgorithm {
54
54
/// Signing policy for HTTP request signing
55
55
///
56
56
/// Info about used policy for domains / endpoints can be requested
57
- /// via [`XalAuthenticator.get_endpoints(&self)`]( crate::XalAuthenticator#method. get_endpoints)
57
+ /// via [`crate::request_signer:: get_endpoints`].
58
58
///
59
59
/// Utilized by [`crate::RequestSigner`]
60
60
#[ derive( Debug , PartialEq , Eq , Clone , Serialize , Deserialize ) ]
@@ -99,7 +99,7 @@ pub mod request {
99
99
100
100
/// SISU Authentication request body
101
101
///
102
- /// Used by [`XalAuthenticator.do_sisu_authentication(&mut self)`]( crate::XalAuthenticator#method.do_sisu_authentication)
102
+ /// Used by [`crate::XalAuthenticator::sisu_authenticate`]
103
103
#[ derive( Debug , Serialize , Deserialize ) ]
104
104
#[ serde( rename_all = "PascalCase" ) ]
105
105
pub struct SisuAuthenticationRequest < ' a > {
@@ -123,7 +123,7 @@ pub mod request {
123
123
124
124
/// SISU Authorization request body
125
125
///
126
- /// Used by [`XalAuthenticator.sisu_authorize(&mut self)`]( crate::XalAuthenticator#method. sisu_authorize)
126
+ /// Used by [`crate::XalAuthenticator:: sisu_authorize`]
127
127
#[ derive( Debug , Serialize , Deserialize ) ]
128
128
#[ serde( rename_all = "PascalCase" ) ]
129
129
pub struct SisuAuthorizationRequest < ' a > {
@@ -139,7 +139,7 @@ pub mod request {
139
139
pub site_name : & ' a str ,
140
140
/// Session Id
141
141
///
142
- /// Received by previous call on [`XalAuthenticator`]( crate::XalAuthenticator#method. sisu_authenticate)
142
+ /// Received by previous call on [`crate::XalAuthenticator:: sisu_authenticate`]
143
143
#[ serde( skip_serializing_if = "Option::is_none" ) ]
144
144
pub session_id : Option < String > ,
145
145
/// JWK proof key, related to HTTP request signing
0 commit comments