特殊な管理 > データセキュリティの確保 > セキュリティラベルと免除承諾 > セキュリティラベルの設定 > セキュリティラベルの設定手順 > ステップ 7. LogicalAttributesSite.xml を編集する - 必須
  
ステップ 7. LogicalAttributesSite.xml を編集する - 必須
ファイル LogicalAttributesSite.xml を編集して、Property エレメント wt.access.SecurityLabeled に各セキュリティラベルのサブエレメント Class を追加します。
1. ファイル LogicalAttributesSite.xml がサイトにまだ存在していない場合、次の場所に作成します。
<Windchill>/wtSafeArea/siteMod/codebase
<Windchill>Windchill ソリューションのインストール場所です。
ファイル LogicalAttributesSite.xml には以下が含まれている必要があります。
<?xml version="1.0" standalone="no"?>
<!DOCTYPE LogicalAttributes SYSTEM "/com/ptc/core/meta/common/impl/
LogicalAttributes.dtd" >
<!-- Site specific logical attributes. -->
<LogicalAttributes>
</LogicalAttributes>
LogicalAttributesSite.xml ファイルが <Windchill>/codebase ディレクトリに存在する場合、既存ファイルを以下の場所にコピーします。
<Windchill>/wtSafeArea/ptcOrig/codebase
および
<Windchill>/wtSafeArea/siteMod/codebase
2. <Windchill>/wtSafeArea/siteMod/codebase/LogicalAttributesSite.xml ファイルをテキストエディタで開きます。
3. エレメント LogicalAttributes 内にエレメント Class を追加します。
<Class name="wt.access.SecurityLabeled">
</Class>
4. エレメント Class 内に、
Property サブエレメントを ALL_SECURITY_LABELS、ALL_STANDARD_SECURITY_LABELS、ALL_CUSTOM_SECURITY_LABELS と次のフォーマットの各セキュリティラベルに追加します。
<Property>
<LogicalForm><SECURITY_LABEL></LogicalForm>
<ExternalForm>SCA|<SECURITY_LABEL></ExternalForm>
</Property>
SCA|<SECURITY_LABEL> は、セキュリティラベルのコンフィギュレーションファイル内のセキュリティラベルのエレメント SecurityLabelResourceKey の値のチルド (~) 以降の部分と一致します。この値には英数字と下線のみを使用できます。LogicalForm の値 <SECURITY_LABEL>ExternalForm の値 <SECURITY_LABEL> と必ずしも同じである必要はありませんが、このガイドでは同じ値を使用しています。
たとえば、サンプルコンフィギュレーションで各セキュリティラベルに必要な行を追加すると、エレメントは次のようになります。
<Class name="wt.access.SecurityLabeled">
<Property>
<LogicalForm>ALL_SECURITY_LABELS</LogicalForm>
<ExternalForm>SCA|ALL_SECURITY_LABELS</ExternalForm>
</Property>
<Property>
<LogicalForm>ALL_STANDARD_SECURITY_LABELS</LogicalForm>
<ExternalForm>SCA|ALL_STANDARD_SECURITY_LABELS</ExternalForm>
</Property>
<Property>
<LogicalForm>ALL_CUSTOM_SECURITY_LABELS</LogicalForm>
<ExternalForm>SCA|ALL_CUSTOM_SECURITY_LABELS</ExternalForm>
</Property>
<Property>
<LogicalForm>CORPORATE_PROPRIETARY</LogicalForm>
<ExternalForm>SCA|CORPORATE_PROPRIETARY</ExternalForm>
</Property>
<Property>
<LogicalForm>EXPORT_CONTROL</LogicalForm>
<ExternalForm>SCA|EXPORT_CONTROL</ExternalForm>
</Property>
<Property>
<LogicalForm>LEGAL_INFORMATION</LogicalForm>
<ExternalForm>SCA|LEGAL_INFORMATION</ExternalForm>
</Property>
<Property>
<LogicalForm>THIRD_PARTY_PROPRIETARY</LogicalForm>
<ExternalForm>SCA|THIRD_PARTY_PROPRIETARY</ExternalForm>
</Property>
</Class>
5. 保存して閉じます。