Package oracle.security.idm

Examples of oracle.security.idm.PropertySet


            idStore = service.getIdmStore();

            User user = idStore.searchUser(secCntx.getUserName());
            if (user != null) {
                userProfile = user.getUserProfile();
                PropertySet propSet = userProfile.getAllUserProperties();

                Iterator it = propSet.getAll();
                while (it.hasNext()) {
                    Property prop = (Property)it.next();
                    this.attributes =
                            this.attributes + "property: " + prop.getName();
                    Iterator it2 = prop.getValues().iterator();
View Full Code Here


    }

    public void createUser(ActionEvent actionEvent) {
      try {
          PropertySet propSet = new PropertySet();

          Property prop = new Property("samaccountname",this.createUser);
  //        Property prop2 = new Property("userAccountControl",66048);
          propSet.put(prop);
  //        propSet.put(prop2);
          
          User newUser = idStore.getUserManager()
                .createUser(this.createUser,
                            this.createUserPassword.toCharArray(),
View Full Code Here

TOP

Related Classes of oracle.security.idm.PropertySet

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.