Coverage Summary for Class: ExemplarRecord (org.kitodo.api.schemaconverter)
Class |
Class, %
|
Method, %
|
Line, %
|
ExemplarRecord |
0%
(0/1)
|
0%
(0/5)
|
0%
(0/7)
|
/*
* (c) Kitodo. Key to digital objects e. V. <contact@kitodo.org>
*
* This file is part of the Kitodo project.
*
* It is licensed under GNU General Public License version 3 or later.
*
* For the full copyright and license information, please read the
* GPL3-License.txt file that was distributed with this source code.
*/
package org.kitodo.api.schemaconverter;
public class ExemplarRecord {
private String owner;
private String signature;
public ExemplarRecord(String recordOwner, String recordSignature) {
this.owner = recordOwner;
this.signature = recordSignature;
}
/**
* Get owner.
*
* @return value of owner
*/
public String getOwner() {
return owner;
}
/**
* Set owner.
*
* @param owner as java.lang.String
*/
public void setOwner(String owner) {
this.owner = owner;
}
/**
* Get signature.
*
* @return value of signature
*/
public String getSignature() {
return signature;
}
/**
* Set signature.
*
* @param signature as java.lang.String
*/
public void setSignature(String signature) {
this.signature = signature;
}
}