Package com.adito.applications

Examples of com.adito.applications.DefaultApplicationShortcut


    }

    @Override
    public ApplicationShortcut getEmptyResource() throws Exception {
        Calendar calendar = Calendar.getInstance();
        return new DefaultApplicationShortcut(getDefaultRealm().getRealmID(), -1, "", "", calendar, calendar, "", Collections.<String,String>emptyMap(), false);
    }
View Full Code Here


    }

    @Override
    public ApplicationShortcut getNormalResource() throws Exception {
        Calendar calendar = Calendar.getInstance();
        return new DefaultApplicationShortcut(getDefaultRealm().getRealmID(), -1, "RDP Name", "This is a RDP Description", calendar, calendar, "RDP", Collections.<String,String>emptyMap(), false);
    }
View Full Code Here

    }

    @Override
    public ApplicationShortcut getNullResource() throws Exception {
        Calendar calendar = Calendar.getInstance();
        return new DefaultApplicationShortcut(getDefaultRealm().getRealmID(), -1, null, null, calendar, calendar, null, Collections.<String,String>emptyMap(), false);
    }
View Full Code Here

TOP

Related Classes of com.adito.applications.DefaultApplicationShortcut

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.