255256257258259260261262263
public Object build(InputStream stream) throws BuildException { Object value = null; try { value = buildPolicy(stream); } catch (AccessControlException e) { throw new BuildException(e); } return value; }
4748495051525354555657
Document document; try { document = DocumentHelper.readDocument(stream); } catch (Exception e) { throw new BuildException(e); } assert document.getDocumentElement().getLocalName().equals(USECASES_ELEMENT); NamespaceHelper helper = new NamespaceHelper(
253254255256257258259260261