added enunciate for doc generation

This commit is contained in:
Athou
2013-04-15 14:47:37 +02:00
parent f8faa69f02
commit 12e775d64d
14 changed files with 121 additions and 4 deletions

View File

@@ -2,13 +2,22 @@ package com.commafeed.backend.model;
import javax.persistence.Entity;
import javax.persistence.Table;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
@Entity
@Table(name = "APPLICATIONSETTINGS")
@SuppressWarnings("serial")
@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class ApplicationSettings extends AbstractModel {
private String publicUrl;
/**
* Wether registrations are open
*/
private boolean allowRegistrations = false;
private String googleClientId;
private String googleClientSecret;