|
|
# -------------------------------------------------------------------
#
# S E R V I C E S
#
# -------------------------------------------------------------------
# Classes for Turbine Services should be defined here.
# Format: services.[name].classname=[implementing class]
#
# To specify properties of a service use the following syntax:
# service.[name].[property]=[value]
# Turbineのサービスのためのクラス群はここに定義します。
# フォーマット: services.[name].classname=[implementing class]
#
# サービスのプロパティを設定するには、以下の書式を使用します:
# service.[name].[property]=[value]
services.SecurityService.classname=org.apache.fulcrum.security.SecurityService
.
.
.
# -------------------------------------------------------------------
#
# S E C U R I T Y S E R V I C E
#
# -------------------------------------------------------------------
#
# This is the class that implements the User interface.
# You want to override this setting only if you want your User
# implementation to provide application specific addtional
# functionality.
#
# Default: org.apache.turbine.om.security.TurbineUser
#
#
# これはUserインターフェースを実装するクラスです。
# Userの実装にアプリケーション固有の追加機能を提供したい場合に限り、
# この設定をオーバーライドしてください。
#
# デフォルト: org.apache.turbine.om.security.TurbineUser
#
services.SecurityService.user.class=org.apache.fulcrum.security.impl.db.entity.TurbineUser
#
# This setting is DBSecurityService specific - this class is consulted for the names
# of the columns in the users' tables for the purpose of creating join queries.
# If you use your own User implementation in conjunction with DBSecurityService,
# it's peer class must implement org.apache.turbine.om.security.peer.UserPeer interface,
# and you need to specify the name of the peer class here.
#
# Defalut: org.apache.turbine.om.security.peer.TurbineUserPeer
#
#
# この設定はDBSecurityServiceのものです - このクラスはjoinクエリを作成するために、
# Userのテーブル中のカラムの名前を調べます。
# 独自のUserの実装をDBSecurityServiceと結合させる場合、
# それのpeerクラス、org.apache.turbine.om.security.peer.UserPeer
# インターフェースを実装し、peerクラスの名前をここに記述する必要があります。
#
# デフォルト: org.apache.turbine.om.security.peer.TurbineUserPeer
#
services.SecurityService.userPeer.class=org.apache.fulcrum.security.impl.db.entity.TurbineUserPeer
#
# This is the class that implements UserManager interface.
# Override this setting if you want your User information stored
# on a different medium (LADP directory is a good example).
# Default implementation uses Peers and a relational database .
#
#
# これはUserManagerインターフェースを実装するクラスです。
# Userの情報を別のメディアに格納したい場合は、
# この設定をオーバーライドしてください(LDAPディレクトリが良い例です)。
# デフォルト実装では、Peersとリレーショナルデータベースを使用します。
#
services.SecurityService.user.manager=org.apache.fulcrum.security.impl.db.DBUserManager
#
# This is used by the SecurityService to make the password checking
# secure. When enabled, passwords are transformed by a one-way
# function into a sequence of bytes that is base64 encoded.
# It is impossible to guess the plain-text form of the password
# from the representation. When user logs in, the entered password
# is transformed the same way and then compared with stored value.
#
# Default: false
#
#
# これはパスワードの安全なチェックのためにSecurityServiceにより使用されます。
# 有効の場合、パスワードは一方向関数によりbase64エンコードされたバイト列へ
# 変換されます。
# これはこの形式から、プレインテキスト形式のパスワードの推測することを
# 困難にします。ユーザがログインしているとき、
# 入力されたパスワードは同じように変換され、格納されている値と比較されます。
#
# デフォルト: false
#
services.SecurityService.secure.passwords=false
#
# This property lets you choose what digest algorithm will be used
# for encrypting passwords. Check documentation of your JRE for
# available algorithms.
#
# Default: SHA
#
#
# このプロパティは、パスワードの暗号化にどのダイジェストアルゴリズムを
# 使用するかを選択する際に使用されます。
# 利用可能なアルゴリズムについてはJREのドキュメントをチェックしてください。
#
# デフォルト: SHA
#
services.SecurityService.secure.passwords.algorithm=SHA
|