Package org.olat.user

Examples of org.olat.user.PropFoundEvent


   */
  @Override
  public void event(UserRequest ureq, Controller source, Event event) {
    if (source == propertiesCtr) {
      if (event.getCommand().equals("PropFound")){
        PropFoundEvent foundEvent = (PropFoundEvent) event;
        Property myfoundProperty = foundEvent.getProperty();       
        this.showInfo(NLS_FOUND_PROPERTY,myfoundProperty.getKey().toString());               
      }
    } else if (source == pwdCtr) {
      if (event == Event.DONE_EVENT) {
        // rebuild authentication tab, could be wrong now
View Full Code Here

TOP

Related Classes of org.olat.user.PropFoundEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.