Skip to content

Commit

Permalink
Author updated, version changed in doc
Browse files Browse the repository at this point in the history
  • Loading branch information
Litarvan committed Apr 1, 2017
1 parent aa93ab4 commit 5730fa6
Show file tree
Hide file tree
Showing 14 changed files with 47 additions and 48 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -3,7 +3,7 @@ apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'maven-publish'

group = 'fr.theshark34.openauth'
group = 'fr.litarvan.openauth'
version = '1.0.4'
archivesBaseName = 'openauth'

Expand Down
Expand Up @@ -16,7 +16,7 @@
* You should have received a copy of the GNU Lesser General Public License
* along with OpenAuth. If not, see <http://www.gnu.org/licenses/>.
*/
package fr.theshark34.openauth;
package fr.litarvan.openauth;

/**
* The server Auth Points
Expand All @@ -25,8 +25,8 @@
* Contains the pages url of a server
* </p>
*
* @version 1.0.0-SNAPSHOT
* @author TheShark34
* @version 1.0.4
* @author Litarvan
*/
public class AuthPoints {

Expand Down
Expand Up @@ -16,15 +16,15 @@
* You should have received a copy of the GNU Lesser General Public License
* along with OpenAuth. If not, see <http://www.gnu.org/licenses/>.
*/
package fr.theshark34.openauth;
package fr.litarvan.openauth;

import fr.theshark34.openauth.model.AuthError;
import fr.litarvan.openauth.model.AuthError;

/**
* Authentication exceptions
*
* @version 1.0.0-SNAPSHOT
* @author TheShark34
* @version 1.0.4
* @author Litarvan
*/
public class AuthenticationException extends Exception {

Expand Down
Expand Up @@ -16,14 +16,13 @@
* You should have received a copy of the GNU Lesser General Public License
* along with OpenAuth. If not, see <http://www.gnu.org/licenses/>.
*/
package fr.theshark34.openauth;
package fr.litarvan.openauth;

import com.google.gson.Gson;
import fr.theshark34.openauth.model.AuthAgent;
import fr.theshark34.openauth.model.AuthError;
import fr.theshark34.openauth.model.request.*;
import fr.theshark34.openauth.model.response.AuthResponse;
import fr.theshark34.openauth.model.response.RefreshResponse;
import fr.litarvan.openauth.model.AuthAgent;
import fr.litarvan.openauth.model.request.*;
import fr.litarvan.openauth.model.response.*;
import fr.litarvan.openauth.model.AuthError;

import java.io.*;
import java.net.HttpURLConnection;
Expand All @@ -36,7 +35,7 @@
* The main class of the lib, use it to authenticate a user !
* </p>
*
* @version 1.0.3-SNAPSHOT
* @version 1.0.4
* @author Litarvan
*/
public class Authenticator {
Expand Down
Expand Up @@ -16,13 +16,13 @@
* You should have received a copy of the GNU Lesser General Public License
* along with OpenAuth. If not, see <http://www.gnu.org/licenses/>.
*/
package fr.theshark34.openauth.model;
package fr.litarvan.openauth.model;

/**
* JSON model of an auth agent
*
* @version 1.0.0-SNAPSHOT
* @author TheShark34
* @version 1.0.4
* @author Litarvan
*/
public class AuthAgent {

Expand Down
Expand Up @@ -16,13 +16,13 @@
* You should have received a copy of the GNU Lesser General Public License
* along with OpenAuth. If not, see <http://www.gnu.org/licenses/>.
*/
package fr.theshark34.openauth.model;
package fr.litarvan.openauth.model;

/**
* JSON model of an error
*
* @version 1.0.0-SNAPSHOT
* @author TheShark34
* @version 1.0.4
* @author Litarvan
*/
public class AuthError {

Expand Down
Expand Up @@ -16,13 +16,13 @@
* You should have received a copy of the GNU Lesser General Public License
* along with OpenAuth. If not, see <http://www.gnu.org/licenses/>.
*/
package fr.theshark34.openauth.model;
package fr.litarvan.openauth.model;

/**
* JSON model of a profile
*
* @version 1.0.0-SNAPSHOT
* @author TheShark34
* @version 1.0.4
* @author Litarvan
*/
public class AuthProfile {

Expand Down
Expand Up @@ -16,15 +16,15 @@
* You should have received a copy of the GNU Lesser General Public License
* along with OpenAuth. If not, see <http://www.gnu.org/licenses/>.
*/
package fr.theshark34.openauth.model.request;
package fr.litarvan.openauth.model.request;

import fr.theshark34.openauth.model.AuthAgent;
import fr.litarvan.openauth.model.AuthAgent;

/**
* JSON Model of an authentication request
*
* @version 1.0.0-SNAPSHOT
* @author TheShark34
* @version 1.0.4
* @author Litarvan
*/
public class AuthRequest {

Expand Down
Expand Up @@ -16,13 +16,13 @@
* You should have received a copy of the GNU Lesser General Public License
* along with OpenAuth. If not, see <http://www.gnu.org/licenses/>.
*/
package fr.theshark34.openauth.model.request;
package fr.litarvan.openauth.model.request;

/**
* JSON Model of an invalidate request
*
* @version 1.0.0-SNAPSHOT
* @author TheShark34
* @version 1.0.4
* @author Litarvan
*/
public class InvalidateRequest {

Expand Down
Expand Up @@ -16,13 +16,13 @@
* You should have received a copy of the GNU Lesser General Public License
* along with OpenAuth. If not, see <http://www.gnu.org/licenses/>.
*/
package fr.theshark34.openauth.model.request;
package fr.litarvan.openauth.model.request;

/**
* JSON model of a refresh request
*
* @version 1.0.0-SNAPSHOT
* @author TheShark34
* @version 1.0.4
* @author Litarvan
*/
public class RefreshRequest {

Expand Down
Expand Up @@ -16,13 +16,13 @@
* You should have received a copy of the GNU Lesser General Public License
* along with OpenAuth. If not, see <http://www.gnu.org/licenses/>.
*/
package fr.theshark34.openauth.model.request;
package fr.litarvan.openauth.model.request;

/**
* JSON Model of an signout request
*
* @version 1.0.0-SNAPSHOT
* @author TheShark34
* @version 1.0.4
* @author Litarvan
*/
public class SignoutRequest {

Expand Down
Expand Up @@ -16,13 +16,13 @@
* You should have received a copy of the GNU Lesser General Public License
* along with OpenAuth. If not, see <http://www.gnu.org/licenses/>.
*/
package fr.theshark34.openauth.model.request;
package fr.litarvan.openauth.model.request;

/**
* JSON Model of an validate request
*
* @version 1.0.0-SNAPSHOT
* @author TheShark34
* @version 1.0.4
* @author Litarvan
*/
public class ValidateRequest {

Expand Down
Expand Up @@ -16,15 +16,15 @@
* You should have received a copy of the GNU Lesser General Public License
* along with OpenAuth. If not, see <http://www.gnu.org/licenses/>.
*/
package fr.theshark34.openauth.model.response;
package fr.litarvan.openauth.model.response;

import fr.theshark34.openauth.model.AuthProfile;
import fr.litarvan.openauth.model.AuthProfile;

/**
* JSON Model of an authentication response
*
* @version 1.0.0-SNAPSHOT
* @author TheShark34
* @version 1.0.4
* @author Litarvan
*/
public class AuthResponse {

Expand Down
Expand Up @@ -16,15 +16,15 @@
* You should have received a copy of the GNU Lesser General Public License
* along with OpenAuth. If not, see <http://www.gnu.org/licenses/>.
*/
package fr.theshark34.openauth.model.response;
package fr.litarvan.openauth.model.response;

import fr.theshark34.openauth.model.AuthProfile;
import fr.litarvan.openauth.model.AuthProfile;

/**
* JSON Model of an refresh response
*
* @version 1.0.0-SNAPSHOT
* @author TheShark34
* @version 1.0.4
* @author Litarvan
*/
public class RefreshResponse {

Expand Down

0 comments on commit 5730fa6

Please sign in to comment.