refactoring comments

revert-70aa11f8
inosh-perera 9 years ago
parent d4403c6d87
commit b5a6280c8d

@ -16,7 +16,6 @@
* under the License.
*/
package org.wso2.carbon.certificate.mgt.core.config;
import javax.xml.bind.annotation.XmlElement;

@ -16,7 +16,6 @@
* under the License.
*/
package org.wso2.carbon.certificate.mgt.core.config;
import org.wso2.carbon.certificate.mgt.core.config.datasource.DataSourceConfig;

@ -38,9 +38,3 @@ public class DataSourceConfig {
this.jndiLookupDefinition = jndiLookupDefinition;
}
}
// CREATE TABLE IF NOT EXISTS DM_DEVICE_CERTIFICATE (
// ID INTEGER auto_increment NOT NULL,
// SERIAL_NUMBER VARCHAR(500) DEFAULT NULL,
// CERTIFICATE BLOB DEFAULT NULL,
// PRIMARY KEY (ID)
// );

@ -29,6 +29,7 @@ public interface CertificateDAO {
/**
* This can be used to store a certificate in the database, where it will be stored against the serial number
* of the certificate.
*
* @param byteArrayInputStream Holds the certificate.
* @param serialNumber Serial number of the certificate.
* @throws CertificateManagementDAOException
@ -38,6 +39,7 @@ public interface CertificateDAO {
/**
* Usage is to obtain a certificate stored in the database by providing the serial number.
*
* @param serialNumber Serial number of the certificate.
* @return representation of the certificate.
* @throws CertificateManagementDAOException

@ -16,7 +16,6 @@
* under the License.
*/
package org.wso2.carbon.certificate.mgt.core.dao;
import org.apache.commons.logging.Log;

@ -39,7 +39,8 @@ public class CertificateManagementServiceImpl implements CertificateManagementSe
private static KeyStoreReader keyStoreReader;
private static CertificateGenerator certificateGenerator;
private CertificateManagementServiceImpl() {}
private CertificateManagementServiceImpl() {
}
public static CertificateManagementServiceImpl getInstance() {

Loading…
Cancel
Save