Oracle Application Server Certificate Authority Java API Reference
10g (9.0.4)
B12079-01

oracle.security.oca.policy
Class OCMPolicyConstants

java.lang.Object
  |
  +--oracle.security.oca.policy.OCMPolicyConstants

public final class OCMPolicyConstants
extends java.lang.Object

This class defines constants used in policy processing. The constants can be used to check the values or set error type into OCAPolicyRequest.

Since:
9.0.4
See Also:
OCAPolicyRequest


 

Field Summary
static java.lang.String AUTH_TYPE_MANUAL
          Contains auth type value MANUAL.
static java.lang.String AUTH_TYPE_SSL
          Contains auth type value SSL.
static java.lang.String AUTH_TYPE_SSO
          Contains auth type value SSO.
static java.lang.String CERT_OP_ENROLLMENT
          Contains value enrollment.
static java.lang.String CERT_OP_RENEWAL
          Contains value renewal.
static java.lang.String CERT_OP_REVOCATION
          Contains value revoke.
static java.lang.String CERT_TYPE_CA
          Contains value ca.
static java.lang.String CERT_TYPE_CLIENT
          Contains value client.
static java.lang.String CERT_TYPE_SERVER
          Contains value server.
static java.lang.String CERT_USAGE_CA_SIGN
          Contains value ca_sign.
static java.lang.String CERT_USAGE_CODE_SIGN
          Contains value code_sign.
static java.lang.String CERT_USAGE_SMIME_ENC
          Contains value smime_enc.
static java.lang.String CERT_USAGE_SMIME_SIGN
          Contains value smime_sign.
static java.lang.String CERT_USAGE_SSL
          Contains value ssl.
static java.lang.String POLICY_ERROR
          Contains value ERROR.
static java.lang.String POLICY_WARNING
          Contains value WARNING.
static java.lang.String RSA_KEY_ALGO
          Contains value rsa.


 

Constructor Summary
OCMPolicyConstants()
 


 

Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

 


 

Field Detail

POLICY_ERROR

public static final java.lang.String POLICY_ERROR
Contains value ERROR. Used to set error type into OCAPolicyRequest.
Since:
9.0.4
See Also:
OCAPolicyRequest.setError(java.lang.String, java.lang.String, java.lang.String), Constant Field Values

POLICY_WARNING

public static final java.lang.String POLICY_WARNING
Contains value WARNING. Used to set error type into OCAPolicyRequest.
Since:
9.0.4
See Also:
OCAPolicyRequest.setError(java.lang.String, java.lang.String, java.lang.String), Constant Field Values

CERT_TYPE_CLIENT

public static final java.lang.String CERT_TYPE_CLIENT
Contains value client. Used to check the type of a certificate. If the certificate type equals, CERT_TYPE_CLIENT, then the policy processer is processing a request related to client certificate / certificate request.
Since:
9.0.4
See Also:
OCAPolicyRequest.getCertType(), Constant Field Values

CERT_TYPE_SERVER

public static final java.lang.String CERT_TYPE_SERVER
Contains value server. Used to check the type of a certificate. If the certificate type equals, CERT_TYPE_SERVER, then the policy processer is processing a request related to server certificate / certificate request.
Since:
9.0.4
See Also:
OCAPolicyRequest.getCertType(), Constant Field Values

CERT_TYPE_CA

public static final java.lang.String CERT_TYPE_CA
Contains value ca. Used to check the type of a certificate. If the certificate type equals, CERT_TYPE_CA, then the policy processer is processing a request related to SubCA certificate / certificate request.
Since:
9.0.4
See Also:
OCAPolicyRequest.getCertType(), Constant Field Values

CERT_USAGE_SSL

public static final java.lang.String CERT_USAGE_SSL
Contains value ssl. Possible value of the usage of the certificate / certificate request being processed by the policy processor. OCAPolicyRequest.getCertUsage() returns this value if the current request being processed is for a SSL certificate.
Since:
9.0.4
See Also:
OCAPolicyRequest.getCertUsage(), Constant Field Values

CERT_USAGE_SMIME_ENC

public static final java.lang.String CERT_USAGE_SMIME_ENC
Contains value smime_enc. Possible value of the usage of the certificate / certificate request being processed by the policy processor. OCAPolicyRequest.getCertUsage() returns this value if the current request being processed is for a SMIME encryption certificate.
Since:
9.0.4
See Also:
OCAPolicyRequest.getCertUsage(), Constant Field Values

CERT_USAGE_SMIME_SIGN

public static final java.lang.String CERT_USAGE_SMIME_SIGN
Contains value smime_sign. Possible value of the usage of the certificate / certificate request being processed by the policy processor. OCAPolicyRequest.getCertUsage() returns this value if the current request being processed is for a SMIME signing certificate.
Since:
9.0.4
See Also:
OCAPolicyRequest.getCertUsage(), Constant Field Values

CERT_USAGE_CODE_SIGN

public static final java.lang.String CERT_USAGE_CODE_SIGN
Contains value code_sign. Possible value of the usage of the certificate / certificate request being processed by the policy processor. OCAPolicyRequest.getCertUsage() returns this value if the current request being processed is for a code signing certificate.
Since:
9.0.4
See Also:
OCAPolicyRequest.getCertUsage(), Constant Field Values

CERT_USAGE_CA_SIGN

public static final java.lang.String CERT_USAGE_CA_SIGN
Contains value ca_sign. Possible value of the usage of the certificate / certificate request being processed by the policy processor. OCAPolicyRequest.getCertUsage() returns this value if the current request being processed is for a SubCA certificate.
Since:
9.0.4
See Also:
OCAPolicyRequest.getCertUsage(), Constant Field Values

RSA_KEY_ALGO

public static final java.lang.String RSA_KEY_ALGO
Contains value rsa.
Since:
9.0.4
See Also:
OCAPolicyRequest.getKeyAlgorithm(), Constant Field Values

CERT_OP_ENROLLMENT

public static final java.lang.String CERT_OP_ENROLLMENT
Contains value enrollment. This is one of the type of CA operations for which policies can be applied. OCAPolicyRequest.getRequestOperation() returns this if the current request is for issuance of a certificate.
Since:
9.0.4
See Also:
OCAPolicyRequest.getRequestOperation(), Constant Field Values

CERT_OP_REVOCATION

public static final java.lang.String CERT_OP_REVOCATION
Contains value revoke. This is one of the type of CA operations for which policies can be applied. OCAPolicyRequest.getRequestOperation() returns this if the current request is for revocation of a certificate.
Since:
9.0.4
See Also:
OCAPolicyRequest.getRequestOperation(), Constant Field Values

CERT_OP_RENEWAL

public static final java.lang.String CERT_OP_RENEWAL
Contains value renewal. This is one of the type of CA operations for which policies can be applied. OCAPolicyRequest.getRequestOperation() returns this if the current request is for renewal of a certificate.
Since:
9.0.4
See Also:
OCAPolicyRequest.getRequestOperation(), Constant Field Values

AUTH_TYPE_MANUAL

public static final java.lang.String AUTH_TYPE_MANUAL
Contains auth type value MANUAL. This is one of the authentication mechanisms supported by OCA. OCAPolicyRequest.getAuthType() returns this value if the authentcation mechanism used is Manual Authentication.
Since:
9.0.4
See Also:
OCAPolicyRequest.getAuthType(), Constant Field Values

AUTH_TYPE_SSL

public static final java.lang.String AUTH_TYPE_SSL
Contains auth type value SSL. This is one of the authentication mechanisms supported by OCA. OCAPolicyRequest.getAuthType() returns this value if the authentcation mechanism used is SSL Authentication.
Since:
9.0.4
See Also:
OCAPolicyRequest.getAuthType(), Constant Field Values

AUTH_TYPE_SSO

public static final java.lang.String AUTH_TYPE_SSO
Contains auth type value SSO. This is one of the authentication mechanisms supported by OCA. OCAPolicyRequest.getAuthType() returns this value if the authentcation mechanism used is SSO Authentication.
Since:
9.0.4
See Also:
OCAPolicyRequest.getAuthType(), Constant Field Values
Constructor Detail

OCMPolicyConstants

public OCMPolicyConstants()

Oracle Application Server Certificate Authority Java API Reference
10g (9.0.4)
B12079-01

Copyright © 2000, 2003 Oracle Corporation. All Rights Reserved.