<feed xmlns='http://www.w3.org/2005/Atom'>
<title>pki.git/base/server/cmscore, branch master</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/edewata/public_git/pki.git/'/>
<entry>
<title>Refactored ConfigurationUtils.updateCloneConfig().</title>
<updated>2017-07-08T02:52:44+00:00</updated>
<author>
<name>Endi S. Dewata</name>
<email>edewata@redhat.com</email>
</author>
<published>2017-07-07T17:36:56+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/edewata/public_git/pki.git/commit/?id=2dc3c84777dcd8fe20611511ed5fc422c8b05541'/>
<id>2dc3c84777dcd8fe20611511ed5fc422c8b05541</id>
<content type='text'>
The ConfigurationUtils.updateCloneConfig() invocation has been
modified such that it will only be executed once.

https://pagure.io/dogtagpki/issue/2280

Change-Id: I1d42acb8cf7c7ffedcd109fcd5252a03fb9622e7
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The ConfigurationUtils.updateCloneConfig() invocation has been
modified such that it will only be executed once.

https://pagure.io/dogtagpki/issue/2280

Change-Id: I1d42acb8cf7c7ffedcd109fcd5252a03fb9622e7
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed error message on invalid log type.</title>
<updated>2017-06-27T17:38:50+00:00</updated>
<author>
<name>Endi S. Dewata</name>
<email>edewata@redhat.com</email>
</author>
<published>2017-06-27T16:44:16+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/edewata/public_git/pki.git/commit/?id=833708b48ea76e71ddf1fa9b0cba53a5aa23a459'/>
<id>833708b48ea76e71ddf1fa9b0cba53a5aa23a459</id>
<content type='text'>
To help troubleshooting the error message on invalid log type has
been modified to include the invalid value.

https://pagure.io/dogtagpki/issue/2689

Change-Id: Ie245bd9e3a3925979af4708fa911697a9746e54b
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
To help troubleshooting the error message on invalid log type has
been modified to include the invalid value.

https://pagure.io/dogtagpki/issue/2689

Change-Id: Ie245bd9e3a3925979af4708fa911697a9746e54b
</pre>
</div>
</content>
</entry>
<entry>
<title>Consolidated log() for audit events.</title>
<updated>2017-06-27T05:32:52+00:00</updated>
<author>
<name>Endi S. Dewata</name>
<email>edewata@redhat.com</email>
</author>
<published>2017-06-24T02:11:41+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/edewata/public_git/pki.git/commit/?id=c297d987d29755452b192ae1306610733381771a'/>
<id>c297d987d29755452b192ae1306610733381771a</id>
<content type='text'>
Duplicate log() methods for audit events have been merged into the
Logger class.

https://pagure.io/dogtagpki/issue/2689

Change-Id: I7a5147ff3221a52a82e69f56faf2156c04256db2
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Duplicate log() methods for audit events have been merged into the
Logger class.

https://pagure.io/dogtagpki/issue/2689

Change-Id: I7a5147ff3221a52a82e69f56faf2156c04256db2
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactored signed audit logger.</title>
<updated>2017-06-23T22:04:03+00:00</updated>
<author>
<name>Endi S. Dewata</name>
<email>edewata@redhat.com</email>
</author>
<published>2017-06-20T22:48:39+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/edewata/public_git/pki.git/commit/?id=db84bffad64dd4b9a9d684255794719ae13d677f'/>
<id>db84bffad64dd4b9a9d684255794719ae13d677f</id>
<content type='text'>
Signed audit logger creation has been simplified into:

  Logger signedAuditLogger = SignedAuditLogger.getLogger();

The null checks on signed audit logger have been removed since
it cannot be null. Audit messages can be logged as follows:

  signedAuditLogger.log(message);

https://pagure.io/dogtagpki/issue/2689

Change-Id: I3bf781b0194a6cbb166f71751c098d1c2a3a657a
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed audit logger creation has been simplified into:

  Logger signedAuditLogger = SignedAuditLogger.getLogger();

The null checks on signed audit logger have been removed since
it cannot be null. Audit messages can be logged as follows:

  signedAuditLogger.log(message);

https://pagure.io/dogtagpki/issue/2689

Change-Id: I3bf781b0194a6cbb166f71751c098d1c2a3a657a
</pre>
</div>
</content>
</entry>
<entry>
<title>Reorganized Logger classes.</title>
<updated>2017-06-23T02:23:24+00:00</updated>
<author>
<name>Endi S. Dewata</name>
<email>edewata@redhat.com</email>
</author>
<published>2017-06-21T23:02:18+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/edewata/public_git/pki.git/commit/?id=91079a946317f5c96c2778efaca814da67e0c3bf'/>
<id>91079a946317f5c96c2778efaca814da67e0c3bf</id>
<content type='text'>
Some Logger classes have been moved into com.netscape.cms.logging
due to dependency requirements in subsequent changes.

https://pagure.io/dogtagpki/issue/2689

Change-Id: I1e8ec247764d344647a519618a7523c51799f3de
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Some Logger classes have been moved into com.netscape.cms.logging
due to dependency requirements in subsequent changes.

https://pagure.io/dogtagpki/issue/2689

Change-Id: I1e8ec247764d344647a519618a7523c51799f3de
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactored Logger class.</title>
<updated>2017-06-22T04:03:45+00:00</updated>
<author>
<name>Endi S. Dewata</name>
<email>edewata@redhat.com</email>
</author>
<published>2017-06-21T00:16:00+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/edewata/public_git/pki.git/commit/?id=31988eb90c0f24f13e9bdbb77a91778c7809ebb3'/>
<id>31988eb90c0f24f13e9bdbb77a91778c7809ebb3</id>
<content type='text'>
The Logger class has been modified to provide an interface to
create a Logger instance that stores the log category and log
source.

https://pagure.io/dogtagpki/issue/2689

Change-Id: I1dadcdf35af0f0a17e02328c73ef6d95ca691e7f
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The Logger class has been modified to provide an interface to
create a Logger instance that stores the log category and log
source.

https://pagure.io/dogtagpki/issue/2689

Change-Id: I1dadcdf35af0f0a17e02328c73ef6d95ca691e7f
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactored ILogEventFactory implementations.</title>
<updated>2017-06-22T03:29:43+00:00</updated>
<author>
<name>Endi S. Dewata</name>
<email>edewata@redhat.com</email>
</author>
<published>2017-06-22T00:59:58+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/edewata/public_git/pki.git/commit/?id=355dac82588ce83e84b7dc57b4f7dbf27c6ba9bd'/>
<id>355dac82588ce83e84b7dc57b4f7dbf27c6ba9bd</id>
<content type='text'>
A new LogFactory base class has been added to store the
common fields and methods of the classes implementing
ILogEventFactory interface.

https://pagure.io/dogtagpki/issue/2689

Change-Id: Ife683856e769bd95f22e0fc06e8b65853c3708a2
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A new LogFactory base class has been added to store the
common fields and methods of the classes implementing
ILogEventFactory interface.

https://pagure.io/dogtagpki/issue/2689

Change-Id: Ife683856e769bd95f22e0fc06e8b65853c3708a2
</pre>
</div>
</content>
</entry>
<entry>
<title>Added LogSource enumeration.</title>
<updated>2017-06-22T02:00:51+00:00</updated>
<author>
<name>Endi S. Dewata</name>
<email>edewata@redhat.com</email>
</author>
<published>2017-06-21T20:34:45+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/edewata/public_git/pki.git/commit/?id=2326a4426218ac1db2885f349d0623490d49d69a'/>
<id>2326a4426218ac1db2885f349d0623490d49d69a</id>
<content type='text'>
A LogSource enumeration has been added to replace the integer
log source in the Logger class.

https://pagure.io/dogtagpki/issue/2689

Change-Id: I6f69219fbbfa00d83f26a32174c75ff2782eb6af
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A LogSource enumeration has been added to replace the integer
log source in the Logger class.

https://pagure.io/dogtagpki/issue/2689

Change-Id: I6f69219fbbfa00d83f26a32174c75ff2782eb6af
</pre>
</div>
</content>
</entry>
<entry>
<title>Added LogCategory enumeration.</title>
<updated>2017-06-22T02:00:37+00:00</updated>
<author>
<name>Endi S. Dewata</name>
<email>edewata@redhat.com</email>
</author>
<published>2017-06-21T16:46:57+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/edewata/public_git/pki.git/commit/?id=d884229da2673703777d474fddd8c3c61eba9308'/>
<id>d884229da2673703777d474fddd8c3c61eba9308</id>
<content type='text'>
A LogCategory enumeration has been added to replace the integer
log category in the Logger class.

https://pagure.io/dogtagpki/issue/2689

Change-Id: Ic92e64c3abdf859841eaf1006afc61bbf573086d
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A LogCategory enumeration has been added to replace the integer
log category in the Logger class.

https://pagure.io/dogtagpki/issue/2689

Change-Id: Ic92e64c3abdf859841eaf1006afc61bbf573086d
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactored LogQueue class.</title>
<updated>2017-06-22T02:00:29+00:00</updated>
<author>
<name>Endi S. Dewata</name>
<email>edewata@redhat.com</email>
</author>
<published>2017-06-21T20:02:47+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/edewata/public_git/pki.git/commit/?id=b4c50042b821f9bca854be2fbea382738060764d'/>
<id>b4c50042b821f9bca854be2fbea382738060764d</id>
<content type='text'>
The LogQueue class has been refactored such that the list of
listeners is never null.

The Logger class has been modified to get the LogQueue singleton
directly instead of through LogSubsystem.

https://pagure.io/dogtagpki/issue/2689

Change-Id: Id5d3c132215014a238fc5ecd5f80d60d687e3dd9
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The LogQueue class has been refactored such that the list of
listeners is never null.

The Logger class has been modified to get the LogQueue singleton
directly instead of through LogSubsystem.

https://pagure.io/dogtagpki/issue/2689

Change-Id: Id5d3c132215014a238fc5ecd5f80d60d687e3dd9
</pre>
</div>
</content>
</entry>
</feed>
