Package org.jboss.profileservice.spi.repository

Examples of org.jboss.profileservice.spi.repository.MutableRepository.addResource()


/*     */
/*     */   public void addManagedObject(String vfsPath, Attachments edits) throws Exception
/*     */   {
/*  97 */     MutableRepository repo = getRepository(this.adminEditsRoot.toURI());
/*  98 */     AttachmentsResource attachments = new AttachmentsResource(vfsPath, edits, repo);
/*  99 */     repo.addResource(attachments);
/*     */   }
/*     */
/*     */   public void create() throws Exception
/*     */   {
/* 104 */     File profileRoot = new File(this.root, this.key.getName());
View Full Code Here


/*     */   public void addDeployment(String vfsPath, VFSDeployment d, ManagedDeployment.DeploymentPhase phase)
/*     */     throws Exception
/*     */   {
/*  83 */     MutableRepository mrepo = getRepository(d.getRoot().toURI());
/*  84 */     VFSDeploymentResource dres = new VFSDeploymentResource(d, phase, mrepo);
/*  85 */     mrepo.addResource(dres);
/*     */   }
/*     */
/*     */   public void addDeploymentContent(String name, ZipInputStream contentIS, ManagedDeployment.DeploymentPhase phase)
/*     */     throws IOException
/*     */   {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.