removed constructors without parameters
git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/social-networking/social-networking-service-model@157536 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
9e2dd7a7e1
commit
9a74892f42
10
pom.xml
10
pom.xml
|
@ -53,11 +53,6 @@
|
||||||
<version>[1.0.0-SNAPSHOT,)</version>
|
<version>[1.0.0-SNAPSHOT,)</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
|
||||||
<groupId>org.slf4j</groupId>
|
|
||||||
<artifactId>slf4j-api</artifactId>
|
|
||||||
<scope>provided</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.glassfish.jersey.ext</groupId>
|
<groupId>org.glassfish.jersey.ext</groupId>
|
||||||
<artifactId>jersey-bean-validation</artifactId>
|
<artifactId>jersey-bean-validation</artifactId>
|
||||||
|
@ -76,6 +71,11 @@
|
||||||
<version>${version.jersey}</version>
|
<version>${version.jersey}</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.slf4j</groupId>
|
||||||
|
<artifactId>slf4j-api</artifactId>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>junit</groupId>
|
<groupId>junit</groupId>
|
||||||
<artifactId>junit</artifactId>
|
<artifactId>junit</artifactId>
|
||||||
|
|
|
@ -17,10 +17,6 @@ public class ApplicationId {
|
||||||
@Size(message="app_id cannot be empty", min=1)
|
@Size(message="app_id cannot be empty", min=1)
|
||||||
private String appId;
|
private String appId;
|
||||||
|
|
||||||
public ApplicationId() {
|
|
||||||
super();
|
|
||||||
}
|
|
||||||
|
|
||||||
public ApplicationId(String appId) {
|
public ApplicationId(String appId) {
|
||||||
super();
|
super();
|
||||||
this.appId = appId;
|
this.appId = appId;
|
||||||
|
|
|
@ -42,10 +42,6 @@ public class JobNotificationBean {
|
||||||
@JsonProperty("status_message")
|
@JsonProperty("status_message")
|
||||||
private String statusMessage;
|
private String statusMessage;
|
||||||
|
|
||||||
public JobNotificationBean() {
|
|
||||||
super();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param recipient
|
* @param recipient
|
||||||
* @param jobId
|
* @param jobId
|
||||||
|
|
|
@ -43,10 +43,6 @@ public class MessageInputBean implements Serializable {
|
||||||
@Valid // validate recursively
|
@Valid // validate recursively
|
||||||
private ArrayList<Recipient> recipients;
|
private ArrayList<Recipient> recipients;
|
||||||
|
|
||||||
public MessageInputBean() {
|
|
||||||
super();
|
|
||||||
}
|
|
||||||
|
|
||||||
public MessageInputBean(String body, String subject,
|
public MessageInputBean(String body, String subject,
|
||||||
ArrayList<Recipient> recipients) {
|
ArrayList<Recipient> recipients) {
|
||||||
super();
|
super();
|
||||||
|
|
|
@ -42,10 +42,6 @@ public class PostInputBean implements Serializable{
|
||||||
@JsonProperty("params")
|
@JsonProperty("params")
|
||||||
private String params;
|
private String params;
|
||||||
|
|
||||||
public PostInputBean() {
|
|
||||||
super();
|
|
||||||
}
|
|
||||||
|
|
||||||
public PostInputBean(String text, String previewtitle,
|
public PostInputBean(String text, String previewtitle,
|
||||||
String previewdescription, String previewhost, String previewurl,
|
String previewdescription, String previewhost, String previewurl,
|
||||||
String httpimageurl, boolean enablenotification, String params) {
|
String httpimageurl, boolean enablenotification, String params) {
|
||||||
|
|
|
@ -24,9 +24,6 @@ public class Recipient implements Serializable{
|
||||||
@Size(min=1, message="recipient id must not be empty")
|
@Size(min=1, message="recipient id must not be empty")
|
||||||
private String id;
|
private String id;
|
||||||
|
|
||||||
public Recipient() {
|
|
||||||
super();
|
|
||||||
}
|
|
||||||
public Recipient(String id) {
|
public Recipient(String id) {
|
||||||
super();
|
super();
|
||||||
this.id = id;
|
this.id = id;
|
||||||
|
|
Loading…
Reference in New Issue