blob: b74611d09dcca41261edcc445e79b73018ab4683 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>TempKeyPK.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">jUDDI Core Services</a> &gt; <a href="index.source.html" class="el_package">org.apache.juddi.model</a> &gt; <span class="el_source">TempKeyPK.java</span></div><h1>TempKeyPK.java</h1><pre class="source lang-java linenums">package org.apache.juddi.model;
/*
* Copyright 2001-2008 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import javax.persistence.Column;
import javax.persistence.Embeddable;
import org.apache.commons.lang.builder.HashCodeBuilder;
/**
* @author &lt;a href=&quot;mailto:kstam@apache.org&quot;&gt;Kurt Stam&lt;/a&gt;
*/
@Embeddable
public class TempKeyPK implements java.io.Serializable {
private static final long serialVersionUID = 790951819871694597L;
private String entityKey;
private String txId;
<span class="nc" id="L34"> public TempKeyPK(){</span>
<span class="nc" id="L35"> }</span>
@Column(name = &quot;entity_key&quot;, nullable = false, length = 255)
public String getEntityKey() {
<span class="nc" id="L39"> return entityKey;</span>
}
public void setEntityKey(String entityKey) {
<span class="nc" id="L42"> this.entityKey = entityKey;</span>
<span class="nc" id="L43"> }</span>
@Column(name = &quot;tx_id&quot;, nullable = false, length = 255)
public String getTxId() {
<span class="nc" id="L47"> return txId;</span>
}
public void setTxId(String txId) {
<span class="nc" id="L50"> this.txId = txId;</span>
<span class="nc" id="L51"> }</span>
public int compareTo(TempKeyPK o) {
<span class="nc bnc" id="L54" title="All 6 branches missed."> if (o==null || o.getEntityKey()==null || o.getTxId()==null) return 0;</span>
<span class="nc bnc" id="L55" title="All 4 branches missed."> if (o.getEntityKey().equals(getEntityKey()) &amp;&amp; o.getTxId().equals(getTxId())) return 1;</span>
<span class="nc" id="L56"> else return 0;</span>
}
@Override
public boolean equals(Object obj) {
<span class="nc bnc" id="L61" title="All 4 branches missed."> if (obj!=null &amp;&amp; obj instanceof TempKeyPK) {</span>
<span class="nc" id="L62"> int i = compareTo((TempKeyPK) obj);</span>
<span class="nc bnc" id="L63" title="All 2 branches missed."> if (i==1) return true;</span>
<span class="nc" id="L64"> else return false;</span>
} else {
<span class="nc" id="L66"> return false;</span>
}
}
@Override
public int hashCode() {
<span class="nc" id="L72"> return new HashCodeBuilder(17, 31). // two randomly chosen prime numbers</span>
<span class="nc" id="L73"> append(getTxId()).</span>
<span class="nc" id="L74"> append(getEntityKey()).</span>
<span class="nc" id="L75"> toHashCode();</span>
}
}
</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.7.9.201702052155</span></div></body></html>