Examples of DiscoveryServiceExtension


Examples of de.tum.in.central.repository.beans.generated.DiscoveryServiceExtension

     * This method corresponds to the database table discovery_service_extension
     *
     * @ibatorgenerated Sat Aug 13 20:51:26 CEST 2011
     */
    public int deleteByPrimaryKey(Long id) throws SQLException {
        DiscoveryServiceExtension key = new DiscoveryServiceExtension();
        key.setId(id);
        int rows = sqlMapClient.delete("discovery_service_extension.ibatorgenerated_deleteByPrimaryKey", key);
        return rows;
    }
View Full Code Here

Examples of de.tum.in.central.repository.beans.generated.DiscoveryServiceExtension

     * This method corresponds to the database table discovery_service_extension
     *
     * @ibatorgenerated Sat Aug 13 20:51:26 CEST 2011
     */
    public DiscoveryServiceExtension selectByPrimaryKey(Long id) throws SQLException {
        DiscoveryServiceExtension key = new DiscoveryServiceExtension();
        key.setId(id);
        DiscoveryServiceExtension record = (DiscoveryServiceExtension) sqlMapClient.queryForObject("discovery_service_extension.ibatorgenerated_selectByPrimaryKey", key);
        return record;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.