當前位置: 首頁>>代碼示例>>Java>>正文


Java JcrCallback類代碼示例

本文整理匯總了Java中org.springframework.extensions.jcr.JcrCallback的典型用法代碼示例。如果您正苦於以下問題:Java JcrCallback類的具體用法?Java JcrCallback怎麽用?Java JcrCallback使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


JcrCallback類屬於org.springframework.extensions.jcr包,在下文中一共展示了JcrCallback類的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: setAclManagementCallback

import org.springframework.extensions.jcr.JcrCallback; //導入依賴的package包/類
/**
 * Create a {@linkplain JcrCallback} for setting up ACL management in test repository
 * 
 * @return acl management callback
 */
static JcrCallback setAclManagementCallback() {
  return new JcrCallback() {
    @Override
    public Object doInJcr( Session session ) throws IOException, RepositoryException {
      PentahoJcrConstants pentahoJcrConstants = new PentahoJcrConstants( session );
      Workspace workspace = session.getWorkspace();
      PrivilegeManager privilegeManager = ( (JackrabbitWorkspace) workspace ).getPrivilegeManager();
      try {
        privilegeManager.getPrivilege( pentahoJcrConstants.getPHO_ACLMANAGEMENT_PRIVILEGE() );
      } catch ( AccessControlException ace ) {
        privilegeManager.registerPrivilege( pentahoJcrConstants.getPHO_ACLMANAGEMENT_PRIVILEGE(), false,
            new String[0] );
      }
      session.save();
      return null;
    }
  };
}
 
開發者ID:pentaho,項目名稱:pentaho-kettle,代碼行數:24,代碼來源:PurRepositoryTestingUtils.java

示例2: setAclManagement

import org.springframework.extensions.jcr.JcrCallback; //導入依賴的package包/類
private void setAclManagement() {
  testJcrTemplate.execute( new JcrCallback() {
    @Override
    public Object doInJcr( Session session ) throws IOException, RepositoryException {
      PentahoJcrConstants pentahoJcrConstants = new PentahoJcrConstants( session );
      Workspace workspace = session.getWorkspace();
      PrivilegeManager privilegeManager = ( (JackrabbitWorkspace) workspace ).getPrivilegeManager();
      try {
        privilegeManager.getPrivilege( pentahoJcrConstants.getPHO_ACLMANAGEMENT_PRIVILEGE() );
      } catch ( AccessControlException ace ) {
        privilegeManager.registerPrivilege( pentahoJcrConstants.getPHO_ACLMANAGEMENT_PRIVILEGE(), false,
            new String[0] );
      }
      session.save();
      return null;
    }
  } );
}
 
開發者ID:pentaho,項目名稱:pentaho-kettle,代碼行數:19,代碼來源:UIEERepositoryDirectoryIT.java

示例3: searchResourcesByName

import org.springframework.extensions.jcr.JcrCallback; //導入依賴的package包/類
@Override
public List<Resource> searchResourcesByName(final String baseFolderPath, final String resourceName) {
    return jcrTemplate.execute((JcrCallback<List<Resource>>) session -> new ArrayList<>());
}
 
開發者ID:MyCollab,項目名稱:mycollab,代碼行數:5,代碼來源:ContentJcrDaoImpl.java

示例4: setAclManagement

import org.springframework.extensions.jcr.JcrCallback; //導入依賴的package包/類
private void setAclManagement() {
  JcrCallback callback = PurRepositoryTestingUtils.setAclManagementCallback();
  testJcrTemplate.execute( callback );
}
 
開發者ID:pentaho,項目名稱:pentaho-kettle,代碼行數:5,代碼來源:PurRepositoryIT.java


注:本文中的org.springframework.extensions.jcr.JcrCallback類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。