Package org.exoplatform.webui.organization

Source Code of org.exoplatform.webui.organization.UIGroup

package org.exoplatform.webui.organization;

import java.io.Serializable;

import org.exoplatform.services.organization.Group;
import org.gatein.common.text.EntityEncoder;

public class UIGroup implements Serializable {

  private Group group;
 
  public UIGroup(Group group)
  {
    this.group = group;
  }
 
  public String getEncodedLabel()
  {
    EntityEncoder encoder = EntityEncoder.FULL;
    return encoder.encode(getLabel());
  }
 
  public String getLabel()
  {
    return group.getLabel();
  }

  public String getId()
  {
    return group.getId();
  }
}
TOP

Related Classes of org.exoplatform.webui.organization.UIGroup

TOP
Copyright © 2018 www.massapi.com. 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.