Commit ba585032 by Jan Hrabal

lds

parent 15d5a544
package com.jh.boot.security.model;
import com.jh.boot.jpa.AbstractIdEntity;
public class LegalDocument extends AbstractIdEntity {
private static final long serialVersionUID = 1L;
private String code;
private String locale;
private String text;
public LegalDocument() {
}
public LegalDocument(String code, String locale, String text) {
super();
this.code = code;
this.locale = locale;
this.text = text;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getLocale() {
return locale;
}
public void setLocale(String locale) {
this.locale = locale;
}
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
}
package com.jh.boot.security.repository;
import com.jh.boot.jpa.AbstractHibernateRepository;
public class LegalDocumentRepository extends AbstractHibernateRepository {
}
package com.jh.boot.security.service;
public class LegalDocumentService {
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment