defaultsettings.java

来自「java kerberos implementation」· Java 代码 · 共 46 行

JAVA
46
字号
/*
  Simple Implementation of Kerberos protocol v5
  Copyright (C) 2003 Thia Yeo Ching (tycordinal@yahoo.co.uk)

  This program is free software; you can redistribute it and/or
  modify it under the terms of the GNU General Public License
  as published by the Free Software Foundation; either version 2
  of the License, or (at your option) any later version.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.

*/

package SimpleKerberos.config;


public class DefaultSettings
{
  public static final String AUTH_NAME = "KerberosAS";
  public static final String AUTH_DB_NAME = ".skauthdb";

  public static final String TGS_NAME = "KerberosTGS";
  public static final String ACCOUNTAGENT_NAME = "AccountAgent";
  public static final String DUMMY_NAME = "DUMMY";
  public static final String TGS_PWD = "KerberosTGS";
  public static final String ACCOUNTAGENT_PWD = "AccountAgent";
  public static final String DUMMY_PWD = "DUMMY";

  // default init entries for authentication database
  // please ensure that each name corresponding to its own password
  public static final String SERVICE_NAMES[] = {TGS_NAME, ACCOUNTAGENT_NAME, DUMMY_NAME};
  public static final String SERVICE_PASSWORDS[] = {TGS_PWD, ACCOUNTAGENT_PWD, DUMMY_PWD};

  // runtime setting
  // one hour here, in milliseconds; making a larger value will become -ve number
  // and make the ticket expire immediately
  public static final long TICKET_DURATION = 60*60 * 1000;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?