<feed xmlns='http://www.w3.org/2005/Atom'>
<title>pki.git/base/ca/src, branch ticket-309</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>Enabled authentication for security domain REST interface.</title>
<updated>2012-10-17T23:26:10+00:00</updated>
<author>
<name>Endi Sukma Dewata</name>
<email>edewata@redhat.com</email>
</author>
<published>2012-09-06T21:33:48+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/edewata/public_git/pki.git/commit/?id=2e2a1ed2401a9b0130eb2b5218508f5c1fd569b1'/>
<id>2e2a1ed2401a9b0130eb2b5218508f5c1fd569b1</id>
<content type='text'>
The REST interface for security domain has been refactored and
configured such that it requires authentication. A CLI has been
added to get an installation token.

Ticket #309
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The REST interface for security domain has been refactored and
configured such that it requires authentication. A CLI has been
added to get an installation token.

Ticket #309
</pre>
</div>
</content>
</entry>
<entry>
<title>Using RPM version number in CMake.</title>
<updated>2012-10-01T18:15:44+00:00</updated>
<author>
<name>Endi Sukma Dewata</name>
<email>edewata@redhat.com</email>
</author>
<published>2012-09-30T17:21:46+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/edewata/public_git/pki.git/commit/?id=f81718c563ea12240e161a807013acd2d6eb1f2e'/>
<id>f81718c563ea12240e161a807013acd2d6eb1f2e</id>
<content type='text'>
The RPM spec files have been modified to pass the full RPM version
number to CMake. The version number contains the product version
number, release number, milestone, and platform. The CMake scritps
will parse and use this version number to generate Java manifest
files. The product version number will be used as the specification
version and full version number will be used as the implementation
version.

Ticket #339
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The RPM spec files have been modified to pass the full RPM version
number to CMake. The version number contains the product version
number, release number, milestone, and platform. The CMake scritps
will parse and use this version number to generate Java manifest
files. The product version number will be used as the specification
version and full version number will be used as the implementation
version.

Ticket #339
</pre>
</div>
</content>
</entry>
<entry>
<title>Added VERSION file.</title>
<updated>2012-09-28T14:42:24+00:00</updated>
<author>
<name>Endi Sukma Dewata</name>
<email>edewata@redhat.com</email>
</author>
<published>2012-09-25T05:43:31+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/edewata/public_git/pki.git/commit/?id=9368ef42cea4e1e46f22628cffaa29fba66cfec6'/>
<id>9368ef42cea4e1e46f22628cffaa29fba66cfec6</id>
<content type='text'>
The CMake scripts have been modified to store the version number
in /usr/share/pki/VERSION and in JAR manifest files. These files
can be read by PKI applications to obtain the version number
without having to query the RPM database.

Fixed warnings in Java.cmake file.

Ticket #339
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The CMake scripts have been modified to store the version number
in /usr/share/pki/VERSION and in JAR manifest files. These files
can be read by PKI applications to obtain the version number
without having to query the RPM database.

Fixed warnings in Java.cmake file.

Ticket #339
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed exceptions during shutdown.</title>
<updated>2012-08-28T19:58:43+00:00</updated>
<author>
<name>Endi Sukma Dewata</name>
<email>edewata@redhat.com</email>
</author>
<published>2012-08-16T05:39:48+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/edewata/public_git/pki.git/commit/?id=4549370d8e38d91ca2d89404c6f62f7e6358f328'/>
<id>4549370d8e38d91ca2d89404c6f62f7e6358f328</id>
<content type='text'>
The shutdown() methods in several classes have been fixed to allow
more graceful shutdown and clean restart. There are two types of
object attributes that need to be handled differently.

Attributes that are initialized by the constructor should not be
nulled during shutdown because they won't be reinitialized during
restart. If they require a cleanup (e.g. emptying collections,
closing LDAP connections) it's not necessary to check for null
before calling the cleanup method because they're never null.

For attributes that are initialized during init(), it may not be
necessary to do a cleanup or null the attribute since they might
still be used by other threads and they will be reinitialized
during restart so the old objects will be garbage collected. If
they do need a cleanup they should be checked for null because
they might still be null due to init() failure or initialization
conditionals.

If the attributes are initialized conditionally, the logic has been
modified to ensure the attributes are either initialized or set to
null.

Ticket #247
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The shutdown() methods in several classes have been fixed to allow
more graceful shutdown and clean restart. There are two types of
object attributes that need to be handled differently.

Attributes that are initialized by the constructor should not be
nulled during shutdown because they won't be reinitialized during
restart. If they require a cleanup (e.g. emptying collections,
closing LDAP connections) it's not necessary to check for null
before calling the cleanup method because they're never null.

For attributes that are initialized during init(), it may not be
necessary to do a cleanup or null the attribute since they might
still be used by other threads and they will be reinitialized
during restart so the old objects will be garbage collected. If
they do need a cleanup they should be checked for null because
they might still be null due to init() failure or initialization
conditionals.

If the attributes are initialized conditionally, the logic has been
modified to ensure the attributes are either initialized or set to
null.

Ticket #247
</pre>
</div>
</content>
</entry>
<entry>
<title>Reorganized REST common classes.</title>
<updated>2012-08-15T17:07:43+00:00</updated>
<author>
<name>Endi Sukma Dewata</name>
<email>edewata@redhat.com</email>
</author>
<published>2012-08-11T14:47:39+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/edewata/public_git/pki.git/commit/?id=1aa02e5207514d210e903d23e1d698b85fc29344'/>
<id>1aa02e5207514d210e903d23e1d698b85fc29344</id>
<content type='text'>
The common classes used by REST client and services have been moved
into the com.netscape.certsrv.&lt;component&gt; packages.

Ticket #215
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The common classes used by REST client and services have been moved
into the com.netscape.certsrv.&lt;component&gt; packages.

Ticket #215
</pre>
</div>
</content>
</entry>
<entry>
<title>Cleaned up REST common class names.</title>
<updated>2012-08-15T17:07:26+00:00</updated>
<author>
<name>Endi Sukma Dewata</name>
<email>edewata@redhat.com</email>
</author>
<published>2012-08-11T13:37:52+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/edewata/public_git/pki.git/commit/?id=f554dc2aa0478aa23f7e986b6779091f7d520bf5'/>
<id>f554dc2aa0478aa23f7e986b6779091f7d520bf5</id>
<content type='text'>
The REST common classes have been renamed for better clarity
and consistency.

Ticket #259
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The REST common classes have been renamed for better clarity
and consistency.

Ticket #259
</pre>
</div>
</content>
</entry>
<entry>
<title>Cleaned up REST server class names.</title>
<updated>2012-08-15T17:07:08+00:00</updated>
<author>
<name>Endi Sukma Dewata</name>
<email>edewata@redhat.com</email>
</author>
<published>2012-08-11T10:09:02+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/edewata/public_git/pki.git/commit/?id=d41848a5881db3d12f65e078b945829f1fe296a5'/>
<id>d41848a5881db3d12f65e078b945829f1fe296a5</id>
<content type='text'>
The REST server classes have been renamed for better clarity
and consistency.

Ticket #259
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The REST server classes have been renamed for better clarity
and consistency.

Ticket #259
</pre>
</div>
</content>
</entry>
<entry>
<title>Updated the remaining build scripts.</title>
<updated>2012-08-15T17:02:36+00:00</updated>
<author>
<name>Endi Sukma Dewata</name>
<email>edewata@redhat.com</email>
</author>
<published>2012-08-10T04:55:04+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/edewata/public_git/pki.git/commit/?id=c70859039d60db53a1966f3b1781defd032a4062'/>
<id>c70859039d60db53a1966f3b1781defd032a4062</id>
<content type='text'>
The remaining build scripts have been updated to automatically
find the source codes.

Ticket #62
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The remaining build scripts have been updated to automatically
find the source codes.

Ticket #62
</pre>
</div>
</content>
</entry>
<entry>
<title>Use only pluralized REST interface URLs</title>
<updated>2012-07-24T16:51:17+00:00</updated>
<author>
<name>Ade Lee</name>
<email>alee@redhat.com</email>
</author>
<published>2012-07-24T16:02:08+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/edewata/public_git/pki.git/commit/?id=4e1010be23195c3f00be4c0bfd0fdd5bda5f1148'/>
<id>4e1010be23195c3f00be4c0bfd0fdd5bda5f1148</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added CMSExceptionMapper class to the Application classes</title>
<updated>2012-07-11T01:41:11+00:00</updated>
<author>
<name>Ade Lee</name>
<email>alee@redhat.com</email>
</author>
<published>2012-07-11T01:37:47+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/edewata/public_git/pki.git/commit/?id=778091c087b072a2e5c56ed1cffbee683d421363'/>
<id>778091c087b072a2e5c56ed1cffbee683d421363</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
