Bug 728236

Summary: Duplicated Configuration Code out of sync
Product: [Retired] Dogtag Certificate System Reporter: Adam Young <ayoung>
Component: ConsoleAssignee: Ade Lee <alee>
Status: CLOSED NOTABUG QA Contact: Ben Levenson <benl>
Severity: low Docs Contact:
Priority: unspecified    
Version: 9.0CC: alee
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: All   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2017-08-04 14:54:05 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Bug Depends On:    
Bug Blocks: 730765    
Attachments:
Description Flags
PAtch to sync the configuration between the two code bases
none
Removes the duplicated code and builds by copying from the common component none

Description Adam Young 2011-08-04 13:31:48 UTC
Created attachment 516703 [details]
PAtch to sync the configuration between the two code bases

Description of problem:

Becasue the Console and the Server must agree on several configuration isses, such as ports, they share a set of classes in the package: com.netscape.certsrv.common.  However, this code had been copied in the tree, and was getting out of sync:  changes made in one place were  not reflected in another.  Additionally, tools that attempt to build the entire tree as one namespace complained that the class was multiply defined.

Version-Release number of selected component (if applicable):

9.0 and earlier

How reproducible:

100%

Steps to Reproduce:
  import code base into eclipse

  
Actual results:
  Code fails to compile due to duplicated classes.


Expected results:
   Code should compile

Additional info:

Comment 1 Adam Young 2011-08-04 13:33:41 UTC
Created attachment 516704 [details]
Removes the duplicated code and builds by copying from the common component