com.atlassian.confluence.servlet.download
Enum AttachmentSecurityLevel

java.lang.Object
  extended by java.lang.Enum<AttachmentSecurityLevel>
      extended by com.atlassian.confluence.servlet.download.AttachmentSecurityLevel
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<AttachmentSecurityLevel>

public enum AttachmentSecurityLevel
extends java.lang.Enum<AttachmentSecurityLevel>

Represents the different levels at which attachments can be viewed - always downloaded, always displayed inline, or a mix of the two.

Since:
5.2

Enum Constant Summary
INSECURE
           
SECURE
           
SMART
           
 
Method Summary
static AttachmentSecurityLevel fromLevel(java.lang.String level)
           
 com.atlassian.http.mime.DownloadPolicy getDownloadPolicyLevel()
           
 java.lang.String getLevel()
           
static AttachmentSecurityLevel valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AttachmentSecurityLevel[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SMART

public static final AttachmentSecurityLevel SMART

INSECURE

public static final AttachmentSecurityLevel INSECURE

SECURE

public static final AttachmentSecurityLevel SECURE
Method Detail

values

public static AttachmentSecurityLevel[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (AttachmentSecurityLevel c : AttachmentSecurityLevel.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static AttachmentSecurityLevel valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

getLevel

public java.lang.String getLevel()

fromLevel

public static AttachmentSecurityLevel fromLevel(java.lang.String level)

getDownloadPolicyLevel

public com.atlassian.http.mime.DownloadPolicy getDownloadPolicyLevel()
Returns:
the equivalent DownloadPolicy level for this AttachmentSecurityLevel.


Copyright © 2003-2014 Atlassian. All Rights Reserved.