Package org.jresearch.flexess.core.model.conf

Examples of org.jresearch.flexess.core.model.conf.UserManagement


   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetUserManagement(UserManagement newUserManagement, NotificationChain msgs) {
    UserManagement oldUserManagement = userManagement;
    userManagement = newUserManagement;
    if (eNotificationRequired()) {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, ConfPackage.APPLICATION__USER_MANAGEMENT, oldUserManagement, newUserManagement);
      if (msgs == null) msgs = notification; else msgs.add(notification);
    }
View Full Code Here


  protected void tearDown() throws Exception {
    setFixture(null);
  }

  public void testCheck() {
    UserManagement tested = getFixture();
   
    String iClass = "testClass";
    tested.setClass(iClass);   
    assertEquals(iClass, tested.getClass_());
   
    Boolean iAllowsToLinkUsers = new Boolean(true);
    tested.setAllowsToLinkUsers(iAllowsToLinkUsers);   
    assertEquals(iAllowsToLinkUsers, tested.getAllowsToLinkUsers());
   
    Boolean iInternal = new Boolean(true);
    tested.setInternal(iInternal);
    assertEquals(iInternal, tested.getInternal());
  }
View Full Code Here

   
    String iModelLocation = "testModelLocation";
    tested.setModelLocation(iModelLocation);
    assertEquals(iModelLocation, tested.getModelLocation());
   
    UserManagement iUserManagement = ConfFactory.eINSTANCE.createUserManagement();
    tested.setUserManagement(iUserManagement);
    assertEquals(iUserManagement, tested.getUserManagement());
  }
View Full Code Here

TOP

Related Classes of org.jresearch.flexess.core.model.conf.UserManagement

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.