当前位置: 首页>>代码示例>>Java>>正文


Java PrivateSubscriptionListException类代码示例

本文整理汇总了Java中org.alfresco.service.cmr.subscriptions.PrivateSubscriptionListException的典型用法代码示例。如果您正苦于以下问题:Java PrivateSubscriptionListException类的具体用法?Java PrivateSubscriptionListException怎么用?Java PrivateSubscriptionListException使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


PrivateSubscriptionListException类属于org.alfresco.service.cmr.subscriptions包,在下文中一共展示了PrivateSubscriptionListException类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: checkRead

import org.alfresco.service.cmr.subscriptions.PrivateSubscriptionListException; //导入依赖的package包/类
/**
 * Checks if the current user is allowed to get subscription data.
 */
protected void checkRead(String userId, boolean checkPrivate)
{
    if (userId == null)
    {
        throw new IllegalArgumentException("User Id may not be null!");
    }

    if (!checkPrivate)
    {
        return;
    }

    String currentUser = AuthenticationUtil.getRunAsUser();
    if (currentUser == null)
    {
        throw new IllegalArgumentException("No current user!");
    }

    if (currentUser.equalsIgnoreCase(userId) || authorityService.isAdminAuthority(currentUser)
            || AuthenticationUtil.isRunAsUserTheSystemUser() || !isSubscriptionListPrivate(userId))
    {
        return;
    }

    throw new PrivateSubscriptionListException("subscription_service.err.private-list");
}
 
开发者ID:Alfresco,项目名称:alfresco-repository,代码行数:30,代码来源:SubscriptionServiceImpl.java

示例2: testPrivateList

import org.alfresco.service.cmr.subscriptions.PrivateSubscriptionListException; //导入依赖的package包/类
public void testPrivateList() throws Exception
{
    final String userId1 = USER_BOB;
    final String userId2 = USER_TOM;

    assertFalse(subscriptionService.isSubscriptionListPrivate(userId1));

    subscriptionService.setSubscriptionListPrivate(userId1, false);
    assertFalse(subscriptionService.isSubscriptionListPrivate(userId1));

    subscriptionService.setSubscriptionListPrivate(userId1, true);
    assertTrue(subscriptionService.isSubscriptionListPrivate(userId1));

    subscriptionService.setSubscriptionListPrivate(userId1, false);
    assertFalse(subscriptionService.isSubscriptionListPrivate(userId1));

    subscriptionService.setSubscriptionListPrivate(userId1, true);
    assertTrue(subscriptionService.isSubscriptionListPrivate(userId1));

    subscriptionService.follow(userId1, userId2);

    AuthenticationUtil.runAs(new AuthenticationUtil.RunAsWork<Object>()
    {
        @Override
        public Object doWork() throws Exception
        {
            assertNotNull(subscriptionService.getFollowing(userId1, new PagingRequest(100000, null)));
            return null;
        }
    }, userId1);

    AuthenticationUtil.runAs(new AuthenticationUtil.RunAsWork<Object>()
    {
        @Override
        public Object doWork() throws Exception
        {
            assertNotNull(subscriptionService.getFollowing(userId1, new PagingRequest(100000, null)));
            return null;
        }
    }, AuthenticationUtil.getAdminUserName());

    AuthenticationUtil.runAs(new AuthenticationUtil.RunAsWork<Object>()
    {
        @Override
        public Object doWork() throws Exception
        {
            try
            {
                subscriptionService.getFollowing(userId1, new PagingRequest(100000, null));
                fail("Expected PrivateSubscriptionListException!");
            } catch (PrivateSubscriptionListException psle)
            {
                // expected
            }
            return null;
        }
    }, userId2);
}
 
开发者ID:Alfresco,项目名称:alfresco-repository,代码行数:59,代码来源:SubscriptionServiceImplTest.java

示例3: execute

import org.alfresco.service.cmr.subscriptions.PrivateSubscriptionListException; //导入依赖的package包/类
public void execute(WebScriptRequest req, WebScriptResponse res) throws IOException
{
    if (!subscriptionService.isActive())
    {
        res.setStatus(404);
        return;
    }

    try
    {
        String userId = req.getServiceMatch().getTemplateVars().get("userid");
        Object obj = executeImpl(userId, req, res);

        if (obj instanceof JSONObject || obj instanceof JSONArray)
        {
            res.setContentEncoding(Charset.defaultCharset().displayName());
            res.setContentType(Format.JSON.mimetype() + ";charset=UTF-8");

            Writer writer = res.getWriter();
            if (obj instanceof JSONObject)
            {
                ((JSONObject) obj).writeJSONString(writer);
            } else
            {
                ((JSONArray) obj).writeJSONString(writer);
            }
            writer.flush();
        } else
        {
            res.setStatus(204);
        }
    } catch (SubscriptionsDisabledException sde)
    {
        throw new WebScriptException(404, "Subscription service is disabled!", sde);
    } catch (NoSuchPersonException nspe)
    {
        throw new WebScriptException(404, "Unknown user '" + nspe.getUserName() + "'!", nspe);
    } catch (PrivateSubscriptionListException psle)
    {
        throw new WebScriptException(403, "Subscription list is private!", psle);
    } catch (ParseException pe)
    {
        throw new WebScriptException(400, "Unable to parse JSON!", pe);
    } catch (ClassCastException cce)
    {
        throw new WebScriptException(400, "Unable to parse JSON!", cce);
    } catch (IOException ioe)
    {
        throw new WebScriptException(500, "Unable to serialize JSON!", ioe);
    }
}
 
开发者ID:Alfresco,项目名称:alfresco-remote-api,代码行数:52,代码来源:AbstractSubscriptionServiceWebScript.java


注:本文中的org.alfresco.service.cmr.subscriptions.PrivateSubscriptionListException类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。