전문 관리 > 데이터 보안 확인 > 보안 레이블 및 계약 > 보안 레이블 구성 > 보안 레이블 구성 단계 > 단계 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 요소 내에
ALL_SECURITY_LABELS, ALL_STANDARD_SECURITY_LABELS, ALL_CUSTOM_SECURITY_LABELS 및 각 보안 레이블에 대한 Property 하위 요소를
<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. 저장하고 닫습니다.