private boolean createContainer(String container, String title) throws URISyntaxException {
try {
RepositoryConnection conn = sesameService.getConnection();
try {
checkConnectionNamespace(conn);
conn.begin();
ValueFactory factory = conn.getValueFactory();
URI uri = ResourceUtils.getUriResource(conn, container);
conn.add(uri, RDF.TYPE, factory.createURI(prefixService.getNamespace("ldp"), "Container"), context);
conn.add(uri, RDFS.LABEL, factory.createLiteral(title), context);
conn.add(uri, factory.createURI(prefixService.getNamespace("dct"), "created"), factory.createLiteral(new Date()), context);