Package com.agiletec.aps.system.common.entity.model.attribute

Examples of com.agiletec.aps.system.common.entity.model.attribute.BooleanAttribute


    IUserProfile profile = _profileManager.getDefaultProfileType();
    ITextAttribute fullnameAttr = (ITextAttribute) profile.getAttribute("fullname");
    fullnameAttr.setText(nome, null);
    ITextAttribute emailAttr = (ITextAttribute) profile.getAttribute("email");
    emailAttr.setText(email, null);
    BooleanAttribute boolean1 = (BooleanAttribute) profile.getAttribute("boolean1");
    boolean1.setBooleanValue(new Boolean(cat1));
    BooleanAttribute boolean2 = (BooleanAttribute) profile.getAttribute("boolean2");
    boolean2.setBooleanValue(new Boolean(cat2));
    return profile;
  }
View Full Code Here

TOP

Related Classes of com.agiletec.aps.system.common.entity.model.attribute.BooleanAttribute

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.