1 23 24 package org.infoglue.cms.controllers.usecases.structuretool; 25 26 import org.infoglue.cms.entities.structure.SiteNodeVersionVO; 27 import org.infoglue.cms.exception.ConstraintException; 28 import org.infoglue.cms.exception.SystemException; 29 30 public interface UpdateSiteNodeVersionUCC 31 { 32 public SiteNodeVersionVO updateSiteNodeVersion(Integer siteNodeVersionId, SiteNodeVersionVO valueObjectVariable) throws ConstraintException, SystemException; 33 } 34 | Popular Tags |