Package com.semagia.atomico.server.dm.impl

Examples of com.semagia.atomico.server.dm.impl.FragmentInfo


        final String title = "title";
        final long updated = now();
        final MediaType mt = MediaType.ATOM_XML;
        final String sid = "http://psi.semagia.com/subject-identifier";
        final IResource res = new Resource(sid);
        final IFragmentInfo fragInfo = new FragmentInfo(id, title, updated, mt, "fragId", res);
        feed.addEntry(fragInfo, link);
        assertEquals(1, feed.getEntries().size());
        final IFragmentEntry entry = feed.getEntries().iterator().next();
        assertNotNull(entry);
        assertEquals(id, entry.getId());
View Full Code Here


        final String title = "title";
        final long updated = now();
        final MediaType mt = MediaType.ATOM_XML;
        final String sid = "http://psi.semagia.com/subject-identifier";
        final IResource res = new Resource(sid);
        final IFragmentInfo fragInfo = new FragmentInfo(id, title, updated, mt, "fragId", res);
        try {
            feed.addEntry(fragInfo, null);
            fail("feed.addEntry(info, null) is illegal");
        }
        catch (IllegalArgumentException ex) {
View Full Code Here

TOP

Related Classes of com.semagia.atomico.server.dm.impl.FragmentInfo

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.