[Impressum] [E-Mail]

package generated.javacard.copycardMoneySecure.copycard;

/**
 * Generated Class
 * 
 */
public class ResAuthenticate extends Message implements Codeable {

	public Nonce cardletchallenge;

	/**
	 * Constructor wich sets all attributes to a initial value
	 */
	public ResAuthenticate() {
		cardletchallenge = new Nonce();
	}

	/**
	 * Method for getting the typeflag
	 *
	 * @return den class-specific code
	 */
	public byte getCode() {
		return Code.RESAUTHENTICATE;
	}

	/**
	 * This method deeply checks equality of classes.
	 *
	 * @param other Class to compare with
	 * @return true, if values of all attributes are equal
	 */
	public boolean equals(Codeable other) {
		//The types of the objects have to match
		if (getCode() != other.getCode())
			return false;
		//Attributes of complex type: Use their equals-method
		if (!this.cardletchallenge
				.equals(((ResAuthenticate) other).cardletchallenge))
			return false;
		return true;
	}

	public void copy(ResAuthenticate from) {
		//Complex types: Use their copy-method.
		this.cardletchallenge.copy(from.cardletchallenge);
	}

}