Package com.semagia.atomico.dm

Examples of com.semagia.atomico.dm.IResource


        final String id = "http://www.semagia.com/test";
        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);
View Full Code Here


        final String id = "http://www.semagia.com/test";
        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");
        }
View Full Code Here

    private static void _testDefaultProperties(IFragmentInfo info) {
        assertEquals(_ID, info.getId());
        assertEquals(_TITLE, info.getTitle());
        assertEquals(_UPDATED, info.getUpdated());
        assertEquals(_FRAGMENT_ID, info.getFragmentId());
        final IResource res = info.getResources().iterator().next();
        assertEquals(_SID, res.getIRI());
        assertEquals(IResource.UNKNOWN, res.getKind());
        assertEquals(_RES, res);
    }
View Full Code Here

TOP

Related Classes of com.semagia.atomico.dm.IResource

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.