• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java NodeAffiliate类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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



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

示例1: canAccessItems

import org.jivesoftware.openfire.pubsub.NodeAffiliate; //导入依赖的package包/类
@Override
public boolean canAccessItems(Node node, JID owner, JID subscriber) {
    // Let node owners and sysadmins always get node items
    if (node.isAdmin(owner)) {
        return true;
    }
    NodeAffiliate nodeAffiliate = node.getAffiliate(owner);
    if  (nodeAffiliate == null) {
        // This is an unknown entity to the node so deny access
        return false;
    }
    // Any subscription of this entity that was approved will give him access
    // to retrieve the node items
    for (NodeSubscription subscription : nodeAffiliate.getSubscriptions()) {
        if (subscription.isActive()) {
            return true;
        }
    }
    // No approved subscription was found so deny access
    return false;
}
 
开发者ID:igniterealtime,项目名称:Openfire,代码行数:22,代码来源:AuthorizeAccess.java


示例2: canPublish

import org.jivesoftware.openfire.pubsub.NodeAffiliate; //导入依赖的package包/类
@Override
public boolean canPublish(Node node, JID entity) {
    NodeAffiliate nodeAffiliate = node.getAffiliate(entity);
    // Deny access if user does not have any relation with the node or is an outcast
    if (nodeAffiliate == null ||
            nodeAffiliate.getAffiliation() == NodeAffiliate.Affiliation.outcast) {
        return false;
    }
    // Grant access if user is an owner of publisher
    if (nodeAffiliate.getAffiliation() == NodeAffiliate.Affiliation.publisher ||
            nodeAffiliate.getAffiliation() == NodeAffiliate.Affiliation.owner) {
        return true;
    }
    // Grant access if at least one subscription of this user was approved
    for (NodeSubscription subscription : nodeAffiliate.getSubscriptions()) {
        if (subscription.isActive()) {
            return true;
        }
    }
    return false;
}
 
开发者ID:igniterealtime,项目名称:Openfire,代码行数:22,代码来源:OnlySubscribers.java


示例3: canAccessItems

import org.jivesoftware.openfire.pubsub.NodeAffiliate; //导入依赖的package包/类
@Override
public boolean canAccessItems(Node node, JID owner, JID subscriber) {
       // Let node owners and sysadmins always get node items
       if (node.isAdmin(owner)) {
           return true;
       }
       NodeAffiliate nodeAffiliate = node.getAffiliate(owner);
       if  (nodeAffiliate == null) {
           // This is an unknown entity to the node so deny access
           return false;
       }
       // Any subscription of this entity that was approved will give him access
       // to retrieve the node items
       for (NodeSubscription subscription : nodeAffiliate.getSubscriptions()) {
           if (subscription.isActive()) {
               return true;
           }
       }
       // No approved subscription was found so deny access
       return false;
   }
 
开发者ID:coodeer,项目名称:g3server,代码行数:22,代码来源:AuthorizeAccess.java


示例4: canPublish

import org.jivesoftware.openfire.pubsub.NodeAffiliate; //导入依赖的package包/类
@Override
public boolean canPublish(Node node, JID entity) {
       NodeAffiliate nodeAffiliate = node.getAffiliate(entity);
       // Deny access if user does not have any relation with the node or is an outcast
       if (nodeAffiliate == null ||
               nodeAffiliate.getAffiliation() == NodeAffiliate.Affiliation.outcast) {
           return false;
       }
       // Grant access if user is an owner of publisher
       if (nodeAffiliate.getAffiliation() == NodeAffiliate.Affiliation.publisher ||
               nodeAffiliate.getAffiliation() == NodeAffiliate.Affiliation.owner) {
           return true;
       }
       // Grant access if at least one subscription of this user was approved
       for (NodeSubscription subscription : nodeAffiliate.getSubscriptions()) {
           if (subscription.isActive()) {
               return true;
           }
       }
       return false;
   }
 
开发者ID:coodeer,项目名称:g3server,代码行数:22,代码来源:OnlySubscribers.java


示例5: canSubscribe

import org.jivesoftware.openfire.pubsub.NodeAffiliate; //导入依赖的package包/类
@Override
public boolean canSubscribe(Node node, JID owner, JID subscriber) {
    // Let node owners and sysadmins always subcribe to the node
    if (node.isAdmin(owner)) {
        return true;
    }
    // User is in the whitelist if he has an affiliation and it is not of type outcast
    NodeAffiliate nodeAffiliate = node.getAffiliate(owner);
    return nodeAffiliate != null &&
            nodeAffiliate.getAffiliation() != NodeAffiliate.Affiliation.outcast;
}
 
开发者ID:igniterealtime,项目名称:Openfire,代码行数:12,代码来源:WhitelistAccess.java


示例6: canPublish

import org.jivesoftware.openfire.pubsub.NodeAffiliate; //导入依赖的package包/类
@Override
public boolean canPublish(Node node, JID entity) {
    NodeAffiliate nodeAffiliate = node.getAffiliate(entity);
    return nodeAffiliate != null && (
            nodeAffiliate.getAffiliation() == NodeAffiliate.Affiliation.publisher ||
                    nodeAffiliate.getAffiliation() == NodeAffiliate.Affiliation.owner);
}
 
开发者ID:igniterealtime,项目名称:Openfire,代码行数:8,代码来源:OnlyPublishers.java


示例7: run

import org.jivesoftware.openfire.pubsub.NodeAffiliate; //导入依赖的package包/类
@Override
public void run()
{
    log.debug("[TASK] New subscription : {}", toString());

    Node node = getNode();

    // This will only occur if a PEP service is not loaded.  We can safely do nothing in this 
    // case since any changes will get loaded from the db when it is loaded.
    if (node == null)
        return;

    if (node.getAffiliate(getOwner()) == null)
    {
        // add the missing 'none' affiliation
        NodeAffiliate affiliate = new NodeAffiliate(node, getOwner());
        affiliate.setAffiliation(NodeAffiliate.Affiliation.none);
        node.addAffiliate(affiliate);
    }
    node.addSubscription(getSubscription());

    if (node.isPresenceBasedDelivery() && node.getSubscriptions(getSubscription().getOwner()).size() == 1)
    {
        if (getSubscription().getPresenceStates().isEmpty())
        {
            // Subscribe to the owner's presence since the node is only
            // sending events to online subscribers and this is the first
            // subscription of the user and the subscription is not
            // filtering notifications based on presence show values.
            getService().presenceSubscriptionRequired(getNode(), getOwner());
        }
    }
}
 
开发者ID:igniterealtime,项目名称:Openfire,代码行数:34,代码来源:NewSubscriptionTask.java


示例8: readExternal

import org.jivesoftware.openfire.pubsub.NodeAffiliate; //导入依赖的package包/类
@Override
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
{
    super.readExternal(in);
    jid = (JID) ExternalizableUtil.getInstance().readSerializable(in);
    affiliation = (NodeAffiliate.Affiliation) ExternalizableUtil.getInstance().readSerializable(in);
}
 
开发者ID:igniterealtime,项目名称:Openfire,代码行数:8,代码来源:AffiliationTask.java


示例9: canSubscribe

import org.jivesoftware.openfire.pubsub.NodeAffiliate; //导入依赖的package包/类
@Override
public boolean canSubscribe(Node node, JID owner, JID subscriber) {
       // Let node owners and sysadmins always subcribe to the node
       if (node.isAdmin(owner)) {
           return true;
       }
       // User is in the whitelist if he has an affiliation and it is not of type outcast
       NodeAffiliate nodeAffiliate = node.getAffiliate(owner);
       return nodeAffiliate != null &&
               nodeAffiliate.getAffiliation() != NodeAffiliate.Affiliation.outcast;
   }
 
开发者ID:coodeer,项目名称:g3server,代码行数:12,代码来源:WhitelistAccess.java


示例10: canPublish

import org.jivesoftware.openfire.pubsub.NodeAffiliate; //导入依赖的package包/类
@Override
public boolean canPublish(Node node, JID entity) {
       NodeAffiliate nodeAffiliate = node.getAffiliate(entity);
       return nodeAffiliate != null && (
               nodeAffiliate.getAffiliation() == NodeAffiliate.Affiliation.publisher ||
                       nodeAffiliate.getAffiliation() == NodeAffiliate.Affiliation.owner);
   }
 
开发者ID:coodeer,项目名称:g3server,代码行数:8,代码来源:OnlyPublishers.java


示例11: run

import org.jivesoftware.openfire.pubsub.NodeAffiliate; //导入依赖的package包/类
public void run()
{
	log.debug("[TASK] New subscription : {}", toString());

	Node node = getNode();

	// This will only occur if a PEP service is not loaded.  We can safely do nothing in this 
	// case since any changes will get loaded from the db when it is loaded.
	if (node == null)
		return;

	if (node.getAffiliate(getOwner()) == null)
	{
		// add the missing 'none' affiliation
           NodeAffiliate affiliate = new NodeAffiliate(node, getOwner());
           affiliate.setAffiliation(NodeAffiliate.Affiliation.none);
           node.addAffiliate(affiliate);
	}
	node.addSubscription(getSubscription());

	if (node.isPresenceBasedDelivery() && node.getSubscriptions(getSubscription().getOwner()).size() == 1)
	{
		if (getSubscription().getPresenceStates().isEmpty())
		{
			// Subscribe to the owner's presence since the node is only
			// sending events to online subscribers and this is the first
			// subscription of the user and the subscription is not
			// filtering notifications based on presence show values.
			getService().presenceSubscriptionRequired(getNode(), getOwner());
		}
	}
}
 
开发者ID:idwanglu2010,项目名称:openfire,代码行数:33,代码来源:NewSubscriptionTask.java


示例12: readExternal

import org.jivesoftware.openfire.pubsub.NodeAffiliate; //导入依赖的package包/类
@Override
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
{
	super.readExternal(in);
	jid = (JID) ExternalizableUtil.getInstance().readSerializable(in);
	affiliation = (NodeAffiliate.Affiliation) ExternalizableUtil.getInstance().readSerializable(in);
}
 
开发者ID:idwanglu2010,项目名称:openfire,代码行数:8,代码来源:AffiliationTask.java


示例13: getItems

import org.jivesoftware.openfire.pubsub.NodeAffiliate; //导入依赖的package包/类
public TopicAction.FetchResponse getItems(JID from, String appId,
    TopicAction.ItemsByIdsRequest rqt) throws MMXException {
  String topic = TopicHelper.normalizePath(rqt.getTopic());
  String realTopic = TopicHelper.makeTopic(appId, rqt.getUserId(), topic);
  Node node = mPubSubModule.getNode(realTopic);
  if (node == null) {
    throw new MMXException(StatusCode.TOPIC_NOT_FOUND.getMessage(topic),
        StatusCode.TOPIC_NOT_FOUND.getCode());
  }
  if (node.isCollectionNode()) {
    throw new MMXException("Cannot get items from a collection topic",
        StatusCode.NOT_IMPLEMENTED.getCode());
  }

  LeafNode leafNode = (LeafNode) node;
  List<String> itemIds = rqt.getItemIds();
  if (itemIds == null || itemIds.isEmpty()) {
    throw new MMXException(StatusCode.BAD_REQUEST.getMessage("no item ID's"),
        StatusCode.BAD_REQUEST.getCode());
  }
  // Check if sender and subscriber JIDs match or if a valid "trusted proxy" is being used
  // Assumed that the owner of the subscription is the bare JID of the subscription JID.
  JID owner = from.asBareJID();
  if (!node.getAccessModel().canAccessItems(node, owner, from)) {
    throw new MMXException(StatusCode.FORBIDDEN.getMessage(topic),
        StatusCode.FORBIDDEN.getCode());
  }
  // Check that the requester is not an outcast
  NodeAffiliate affiliate = node.getAffiliate(owner);
  if (affiliate != null && affiliate.getAffiliation() == NodeAffiliate.Affiliation.outcast) {
      throw new MMXException(StatusCode.FORBIDDEN.getMessage(topic),
          StatusCode.FORBIDDEN.getCode());
  }

  // TODO: do we need to check for subscription first?
  List<MMXPublishedItem> mmxItems = new ArrayList<MMXPublishedItem>(itemIds.size());
  for (String itemId : itemIds) {
    if (itemId == null) {
      throw new MMXException(StatusCode.BAD_REQUEST.getMessage("null item ID"),
          StatusCode.BAD_REQUEST.getCode());
    }
    PublishedItem pubItem = leafNode.getPublishedItem(itemId);
    if (pubItem == null) {
      // Ignored the invalid item ID.
      continue;
    }
    MMXPublishedItem mmxItem = new MMXPublishedItem(pubItem.getID(),
          pubItem.getPublisher().toBareJID(),
          pubItem.getCreationDate(),
          pubItem.getPayloadXML());
    mmxItems.add(mmxItem);
  }
  TopicAction.FetchResponse resp = new TopicAction.FetchResponse(
      rqt.getUserId(), topic, mmxItems.size(), mmxItems);
  return resp;
}
 
开发者ID:magnetsystems,项目名称:message-server,代码行数:57,代码来源:MMXTopicManager.java


示例14: AffiliationTask

import org.jivesoftware.openfire.pubsub.NodeAffiliate; //导入依赖的package包/类
public AffiliationTask(Node node, JID jid, NodeAffiliate.Affiliation affiliation)
{
    super(node);
    this.jid = jid;
    this.affiliation = affiliation;
}
 
开发者ID:igniterealtime,项目名称:Openfire,代码行数:7,代码来源:AffiliationTask.java


示例15: getAffilation

import org.jivesoftware.openfire.pubsub.NodeAffiliate; //导入依赖的package包/类
public NodeAffiliate.Affiliation getAffilation()
{
    return affiliation;
}
 
开发者ID:igniterealtime,项目名称:Openfire,代码行数:5,代码来源:AffiliationTask.java


示例16: AffiliationTask

import org.jivesoftware.openfire.pubsub.NodeAffiliate; //导入依赖的package包/类
public AffiliationTask(Node node, JID jid, NodeAffiliate.Affiliation affiliation)
{
	super(node);
	this.jid = jid;
	this.affiliation = affiliation;
}
 
开发者ID:idwanglu2010,项目名称:openfire,代码行数:7,代码来源:AffiliationTask.java


示例17: getAffilation

import org.jivesoftware.openfire.pubsub.NodeAffiliate; //导入依赖的package包/类
public NodeAffiliate.Affiliation getAffilation()
{
	return affiliation;
}
 
开发者ID:idwanglu2010,项目名称:openfire,代码行数:5,代码来源:AffiliationTask.java



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java Selector类代码示例发布时间:2022-05-22
下一篇:
Java Token类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap