~ubuntu-branches/ubuntu/wily/389-ds-console/wily-proposed

« back to all changes in this revision

Viewing changes to src/com/netscape/admin/dirserv/panel/AuditLogPanel.java

  • Committer: Package Import Robot
  • Author(s): Timo Aaltonen
  • Date: 2012-03-15 19:58:37 UTC
  • Revision ID: package-import@ubuntu.com-20120315195837-296zyft51thld8q7
Tags: upstream-1.2.6
ImportĀ upstreamĀ versionĀ 1.2.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/** BEGIN COPYRIGHT BLOCK
 
2
 * Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
 
3
 * Copyright (C) 2005 Red Hat, Inc.
 
4
 * All rights reserved.
 
5
 * 
 
6
 * This program is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation version 2 of the License.
 
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 General Public License for more details.
 
14
 * 
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program; if not, write to the Free Software
 
17
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
18
 * END COPYRIGHT BLOCK **/
 
19
 
 
20
package com.netscape.admin.dirserv.panel;
 
21
 
 
22
import java.awt.*;
 
23
import javax.swing.*;
 
24
import javax.swing.border.*;
 
25
import com.netscape.admin.dirserv.*;
 
26
 
 
27
/**
 
28
 * Panel for Directory Server resource page
 
29
 *
 
30
 * @author  rweltman
 
31
 * @version %I%, %G%
 
32
 * @date                9/15/97
 
33
 * @see     com.netscape.admin.dirserv
 
34
 */
 
35
public class AuditLogPanel extends DSTabbedPanel
 
36
{
 
37
 
 
38
        public AuditLogPanel(IDSModel model)
 
39
        {
 
40
                super( model );
 
41
 
 
42
                addTab( _contentTab = new AuditLogContentPanel( model ) );
 
43
 
 
44
                addTab( _configureTab = new AuditLogConfigurePanel( model ) );
 
45
 
 
46
                _tabbedPane.setSelectedIndex( 0 );
 
47
        }
 
48
 
 
49
        private BlankPanel _contentTab;
 
50
        private BlankPanel _configureTab;
 
51
}