package com.partynetwork.dataprovider.util; /** * 接口定义的字段对应类 com.dongcemedia.dataprovider.util.ActionUtils * * @author 沈跃双 Create at 2013-12-29 下午4:10:44 */ public class ActionUtil { /** * 用户基本信息 com.dongcemedia.dataprovider.util.user * * @author 沈跃双 Create at 2013-12-27 下午9:44:22 */ public interface user { /*********************************************************** 性别 */ /** 男性 */ public static final int MALE = 0; /** 女性 */ public static final int FEMALE = 1; /** 中性 */ public static final int NEUTER = 2; /*********************************************************** 用户关系 */ /** 未知状态 */ public static final int RELATIONSHIP_NUKNOW = -1; /** 陌生人用户 */ public static final int RELATIONSHIP_STRANGER = 0; /** i好友 */ public static final int RELATIONSHIP_FRIEND = 1; /** 我关注的人 */ public static final int RELATIONSHIP_ATTENTION = 2; /** 我的粉丝 */ public static final int RELATIONSHIP_FANS = 3; /** 我的去你妹用户 */ public static final int RELATIONSHIP_BLACKLIST = 4; /** 我自己 */ public static final int RELATIONSHIP_MYSELF = 5; } /** * 派对相关 com.dongcemedia.iparty.iparty.Iparty * * @author 沈跃双 Create at 2013-12-29 下午3:58:12 */ public interface Iparty { /*********************************************************** party类别 */ /** 默认所有关注 */ public static final int IPARTY_PULLDOWN_ALL = 0; /** 众筹Party */ public static final int IPARTY_PULLDOWN_RAISE = 1; /** 预定Party */ public static final int IPARTY_PULLDOWN_BOOK = 2; /** 预热Party */ public static final int IPARTY_PULLDOWN_PREHEAT = 3; /** 热门Party */ public static final int IPARTY_PULLDOWN_HOT = 4; /** i好友发起的Party */ public static final int IPARTY_PULLDOWN_IFRIEND = 5; /** 我发起的Party */ public static final int IPARTY_PULLDOWN_MY = 6; /** 我关注的Party */ public static final int IPARTY_PULLDOWN_CURRENT = 7; /** 我感兴趣的Party */ public static final int IPARTY_PULLDOWN_INTERESTED = 8; /** 我参加的Party */ public static final int IPARTY_PULLDOWN_JOIN = 9; } /** * i分享相关 com.dongcemedia.iparty.iparty.Ishare * * @author 沈跃双 Create at 2013-12-29 下午3:58:32 */ public interface Ishare { /*********************************************************** i分享类别 */ /** 所有关注 */ public static final int ISHARE_PULLDOWN_ALL = 0; /** 热门分享 */ public static final int ISHARE_PULLDOWN_HOT = 1; /** 我赞过的 */ public static final int ISHARE_PULLDOWN_PRAISE = 2; /** i好友的 */ public static final int ISHARE_PULLDOWN_FRIEND = 3; /** 我的i分享 */ public static final int ISHARE_PULLDOWN_ME = 4; } /** * 人脉相关 com.dongcemedia.dataprovider.util.Contacts * * @author 沈跃双 Create at 2014-1-7 上午11:23:25 */ public interface Contacts { /** 选择好友 */ public static final int CHOOSE_FRIEND = -1; /** i好友 */ public static final int FRIEND = 0; /** 我关注的人 */ public static final int ATTENTION = 1; /** 粉丝 */ public static final int FANS = 2; /** 黑名单 */ public static final int BLACK_LIST = 3; /** 分组列表 */ public static final int GROUP = 4; /** 多选 */ public static final int MULTIPLE = 1; /** 默认查看 */ public static final int DEFAULT = 0; } public interface Capture { /** 选择好友 */ public static final String QR_PREFIX = "dc_party_"; } public interface Message { /* 系统消息 */ public static final int MESSAGE_TYPE_SYSTEM = 0; /* iParty提醒 */ public static final int MESSAGE_TYPE_PARTY = 1; /* 打招呼 */ public static final int MESSAGE_TYPE_GREET = 2; /* 新的i好友 */ public static final int MESSAGE_TYPE_FRIEND = 3; /* 提到我的 */ public static final int MESSAGE_TYPE_AT = 4; /* 投票 */ public static final int MESSAGE_TYPE_VOTE = 5; /* 评论 */ public static final int MESSAGE_TYPE_DISCUSS = 6; /* 赞 */ public static final int MESSAGE_TYPE_PRAISE = 7; } }