Skip to content

Commit d03ccfa

Browse files
committed
added auth classes (wip)
1 parent 832ba2c commit d03ccfa

File tree

5 files changed

+20
-0
lines changed

5 files changed

+20
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
package com.nexoscript.requests4j.auth;
2+
3+
public class APIKeyAuthentication extends Authentication {
4+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
package com.nexoscript.requests4j.auth;
2+
3+
public abstract class Authentication {
4+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
package com.nexoscript.requests4j.auth;
2+
3+
public class BasicAuthentication extends Authentication {
4+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
package com.nexoscript.requests4j.auth;
2+
3+
public class DigestAuthentication extends Authentication {
4+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
package com.nexoscript.requests4j.auth;
2+
3+
public class OAuthAuthentication extends Authentication {
4+
}

0 commit comments

Comments
 (0)