Package org.jayasoft.woj.common.model.content

Examples of org.jayasoft.woj.common.model.content.AreaInfoImpl


import org.jayasoft.woj.common.model.content.AreaInfo;
import org.jayasoft.woj.common.model.content.AreaInfoImpl;

public abstract class AbstractAreaInfoComparator implements Comparator {
    public int compare(Object o1, Object o2) {
        AreaInfoImpl a1;
        AreaInfoImpl a2;
        if (o1 instanceof AreaInfoImpl) {
            a1 = (AreaInfoImpl)o1;
        } else {
            return 0;
        }
View Full Code Here


                            f.set(Params.REPOSITORY.SHOW.FORM.CHOOSEN_VISIBILITY, choosenVisibility.getName());
                            request.setAttribute(Params.REPOSITORY.SHOW.FORM.CHOOSEN_VISIBILITY, choosenVisibility.getName());
                           
                            ServerServicesProvider userSSP = (ServerServicesProvider)request.getSession().getAttribute(Params.GENERAL.REQUEST.USER_SSP);
                           
                            AreaInfo info = new AreaInfoImpl();
                            AreaInfo[] orgInfos = null;
                            List orgs = Collections.EMPTY_LIST;
                            if (userLogged.getGroup() != null) {
                                try {
                                    info = userSSP.getModuleManagementService().getAreaInfo(new Long(userLogged.getGroup().getId()), choosenVisibility);
View Full Code Here

TOP

Related Classes of org.jayasoft.woj.common.model.content.AreaInfoImpl

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.