001package org.w3.ldp.testsuite.vocab; 002 003import com.hp.hpl.jena.rdf.model.Property; 004import com.hp.hpl.jena.rdf.model.Resource; 005//import com.hp.hpl.jena.rdf.model.Resource; 006import com.hp.hpl.jena.rdf.model.ResourceFactory; 007 008public class TestDescription { 009 010 private static String td = "http://www.w3.org/2006/03/test-description#"; 011 012 public final static Property reviewStatus = property(td + "reviewStatus"); 013 public final static Property approved = property(td + "approved"); 014 public final static Property unreviewed = property(td + "unreviewed"); 015 public final static Property rejected = property(td + "rejected"); 016 017 public final static Property specificationReference = property(td + "specificationReference"); 018 public final static Property includesText = property(td + "includesText"); 019 020 public final static Resource Excerpt = resource(td + "Excerpt"); 021 022 protected static final Property property(String name) { 023 return ResourceFactory.createProperty(name); 024 } 025 026 protected static final Resource resource(String name) { 027 return ResourceFactory.createResource(name); 028 } 029}