Model for Properties Step of InProceedings

pull/1/head
Jens Pelzetter 2022-08-11 19:34:56 +02:00
parent 4593e7bd6d
commit 1209d799d1
1 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,44 @@
package org.scientificcms.publications.ui.contenttypes;
import javax.enterprise.context.RequestScoped;
import javax.inject.Named;
/**
*
* @author <a href="mailto:jens.pelzetter@googlemail.com">Jens Pelzetter</a>
*/
@RequestScoped
@Named("SciCmsInProceedingsPropertiesStepModel")
public class InProceedingsPropertiesStepModel {
private String proceedingsTitle;
private Integer startPage;
private Integer endPage;
public String getProceedingsTitle() {
return proceedingsTitle;
}
public void setProceedingsTitle(final String proceedingsTitle) {
this.proceedingsTitle = proceedingsTitle;
}
public Integer getStartPage() {
return startPage;
}
public void setStartPage(final Integer startPage) {
this.startPage = startPage;
}
public Integer getEndPage() {
return endPage;
}
public void setEndPage(final Integer endPage) {
this.endPage = endPage;
}
}