blob: 9e09ca72b41ff4c6dfe1c46d27e57aa921a29338 [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>Clerk.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">Clerk.java</span></div><h1>Clerk.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.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.OneToMany;
import javax.persistence.OneToOne;
import javax.persistence.Table;
import javax.persistence.Transient;
/**
* @author &lt;a href=&quot;mailto:kurt@apache.org&quot;&gt;Kurt T Stam&lt;/a&gt;
*/
@Entity
@Table(name = &quot;j3_clerk&quot;)
public class Clerk implements java.io.Serializable {
@Transient
private static final long serialVersionUID = -4175742578534548023L;
@Id()
@Column(name=&quot;clerk_name&quot;, nullable = false, length=255)
private String clerkName;
@Column(name=&quot;publisher_id&quot;, nullable = false, length=255)
private String publisherId;
//@OneToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY)
//@OneToOne(cascade = CascadeType.PERSIST , fetch = FetchType.EAGER)
//@JoinColumn(name = &quot;nodeid&quot;, nullable = false)
//@ManyToOne(fetch = FetchType.LAZY, targetEntity = Node.class , cascade = {CascadeType.PERSIST, CascadeType.DETACH, CascadeType.MERGE, CascadeType.REFRESH })
@Column (name=&quot;nodeid&quot;)
private String node;
@Column(name=&quot;cred&quot;, length=255)
private String cred;
<span class="fc" id="L54"> public Clerk() {}</span>
public Clerk(String clerkName, String cred, String node, String publisherId) {
<span class="nc" id="L57"> super();</span>
<span class="nc" id="L58"> this.clerkName = clerkName;</span>
<span class="nc" id="L59"> this.cred = cred;</span>
<span class="nc" id="L60"> this.node = node;</span>
<span class="nc" id="L61"> this.publisherId = publisherId;</span>
<span class="nc" id="L62"> }</span>
public String getClerkName() {
<span class="fc" id="L65"> return clerkName;</span>
}
public void setClerkName(String clerkName) {
<span class="fc" id="L69"> this.clerkName = clerkName;</span>
<span class="fc" id="L70"> }</span>
public String getPublisherId() {
<span class="fc" id="L73"> return publisherId;</span>
}
public void setPublisherId(String publisherId) {
<span class="fc" id="L77"> this.publisherId = publisherId;</span>
<span class="fc" id="L78"> }</span>
public String getNode() {
<span class="fc" id="L81"> return node;</span>
}
public void setNode(String node) {
<span class="fc" id="L85"> this.node = node;</span>
<span class="fc" id="L86"> }</span>
public String getCred() {
<span class="fc" id="L89"> return cred;</span>
}
public void setCred(String cred) {
<span class="fc" id="L93"> this.cred = cred;</span>
<span class="fc" id="L94"> }</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>