All Downloads are FREE. Search and download functionalities are using the official Maven repository.

bboss.org.jgroups.auth.SimpleToken Maven / Gradle / Ivy

The newest version!
package bboss.org.jgroups.auth;

import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;

import bboss.org.jgroups.Message;
import bboss.org.jgroups.annotations.Property;
import bboss.org.jgroups.util.Util;

/**
 * 

* This is an example of using a preshared token for authentication purposes. All members of the * group have to have the same string value in the JGroups config. *

*

* JGroups config parameters: *

*
    *
  • auth_value (required) = the string to encrypt
  • *
* * @author Chris Mills * @see bboss.org.jgroups.auth.AuthToken */ public class SimpleToken extends AuthToken { @Property private String auth_value = null; private static final long serialVersionUID = 5020668015439045326L; public SimpleToken() { // need an empty constructor } public SimpleToken(String authvalue) { this.auth_value = authvalue; } public String getName() { return "bboss.org.jgroups.auth.SimpleToken"; } public String getAuthValue() { return auth_value; } public void setAuthValue(String auth_value) { this.auth_value = auth_value; } public boolean authenticate(AuthToken token, Message msg) { if ((token != null) && (token instanceof SimpleToken)) { // Found a valid Token to authenticate against SimpleToken serverToken = (SimpleToken) token; if ((this.auth_value != null) && (serverToken.auth_value != null) && (this.auth_value.equalsIgnoreCase(serverToken.auth_value))) { // validated if (log.isDebugEnabled()) { log.debug("SimpleToken match"); } return true; } else { // if(log.isWarnEnabled()){ // log.warn("Authentication failed on SimpleToken"); // } return false; } } if (log.isWarnEnabled()) { log.warn("Invalid AuthToken instance - wrong type or null"); } return false; } /** * Required to serialize the object to pass across the wire * * @param out * @throws IOException */ public void writeTo(DataOutputStream out) throws IOException { if (log.isDebugEnabled()) { log.debug("SimpleToken writeTo()"); } Util.writeString(this.auth_value, out); } /** * Required to deserialize the object when read in from the wire * * @param in * @throws IOException * @throws IllegalAccessException * @throws InstantiationException */ public void readFrom(DataInputStream in) throws IOException, IllegalAccessException, InstantiationException { if (log.isDebugEnabled()) { log.debug("SimpleToken readFrom()"); } this.auth_value = Util.readString(in); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy