mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-21 21:25:38 +00:00
bug6105: showing takedown notice dialog, sending e-mail
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
package com.sap.sse.common.media;
|
||||
|
||||
public enum NatureOfClaim {
|
||||
NONE,
|
||||
COPYRIGHT_INFRINGEMENT,
|
||||
DEFAMATORY_CONTENT,
|
||||
OTHER
|
||||
}
|
||||
+5
-8
@@ -1,5 +1,7 @@
|
||||
package com.sap.sse.common.media;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* Whenever media content is made available that may have been uploaded by an end user, there is a possibility that
|
||||
* other users would like to request this content to be taken down, hidden or otherwise made unavailable. Reasons for
|
||||
@@ -16,14 +18,9 @@ package com.sap.sse.common.media;
|
||||
* @author Axel Uhl (d043530)
|
||||
*
|
||||
*/
|
||||
public class TakedownNoticeRequestContext {
|
||||
public static enum NatureOfClaim {
|
||||
NONE,
|
||||
COPYRIGHT_INFRINGEMENT,
|
||||
DEFAMATORY_CONTENT,
|
||||
OTHER
|
||||
}
|
||||
|
||||
public class TakedownNoticeRequestContext implements Serializable {
|
||||
private static final long serialVersionUID = -7013553116801501898L;
|
||||
|
||||
/**
|
||||
* A message key for a message that takes as parameters the following strings:
|
||||
* <ol>
|
||||
|
||||
Reference in New Issue
Block a user