~openerp-dev/openerp-mobile/openerp-mobile-10

« back to all changes in this revision

Viewing changes to src/com/openerp/addons/message/providers/message/MessageProvider.java

  • Committer: Dharmang Soni (OpenERP)
  • Date: 2014-04-03 07:28:06 UTC
  • Revision ID: dpr@tinyerp.com-20140403072806-qphqroz65ch61pqt
[REMOVE] removed social client module from base framework

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * OpenERP, Open Source Management Solution
3
 
 * Copyright (C) 2012-today OpenERP SA (<http://www.openerp.com>)
4
 
 * 
5
 
 * This program is free software: you can redistribute it and/or modify
6
 
 * it under the terms of the GNU Affero General Public License as
7
 
 * published by the Free Software Foundation, either version 3 of the
8
 
 * License, or (at your option) any later version
9
 
 * 
10
 
 * This program is distributed in the hope that it will be useful,
11
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
 * GNU Affero General Public License for more details
14
 
 * 
15
 
 * You should have received a copy of the GNU Affero General Public License
16
 
 * along with this program.  If not, see <http://www.gnu.org/licenses/>
17
 
 * 
18
 
 */
19
 
 
20
 
package com.openerp.addons.message.providers.message;
21
 
 
22
 
import com.openerp.support.provider.OEContentProvider;
23
 
 
24
 
/**
25
 
 * The Class MessageProvider.
26
 
 */
27
 
public class MessageProvider extends OEContentProvider {
28
 
        public static String CONTENTURI = "com.openerp.addons.message.providers.message.MessageProvider";
29
 
        public static String AUTHORITY = "com.openerp.addons.message.providers.message";
30
 
 
31
 
        @Override
32
 
        public String authority() {
33
 
                return AUTHORITY;
34
 
        }
35
 
 
36
 
        @Override
37
 
        public String contentUri() {
38
 
                return CONTENTURI;
39
 
        }
40
 
 
41
 
}