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

com.veraxsystems.vxipmi.sm.events.AuthenticationCapabilitiesReceived Maven / Gradle / Ivy

The newest version!
/*
 * AuthenticationCapabilitiesReceived.java 
 * Created on 2011-08-22
 *
 * Copyright (c) Verax Systems 2011.
 * All rights reserved.
 *
 * This software is furnished under a license. Use, duplication,
 * disclosure and all other uses are restricted to the rights
 * specified in the written license agreement.
 */
package com.veraxsystems.vxipmi.sm.events;

import com.veraxsystems.vxipmi.coding.commands.PrivilegeLevel;
import com.veraxsystems.vxipmi.sm.StateMachine;
import com.veraxsystems.vxipmi.sm.states.Authcap;
import com.veraxsystems.vxipmi.sm.states.AuthcapWaiting;

/**
 * Performs transition from {@link AuthcapWaiting} to {@link Authcap}.
 * 
 * @see StateMachine
 */
public class AuthenticationCapabilitiesReceived extends StateMachineEvent {
    private int sessionId;
    private PrivilegeLevel privilegeLevel;

    public AuthenticationCapabilitiesReceived(int sessionId, PrivilegeLevel privilegeLevel) {
        this.sessionId = sessionId;
        this.privilegeLevel = privilegeLevel;
    }

    public int getSessionId() {
        return sessionId;
    }
    public PrivilegeLevel getPrivilegeLevel() {
        return privilegeLevel;
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy