Skip navigation links


oracle.iam.platform.entitymgr.vo
Class SchemaAttribute

java.lang.Object
  extended by oracle.iam.platform.entitymgr.vo.SchemaAttribute


public class SchemaAttribute
extends java.lang.Object

Constructor Summary
SchemaAttribute(java.lang.String name, java.lang.String type, java.lang.String targetType, java.lang.Integer len, java.lang.Integer precision, boolean required, java.lang.String desc)
          Represent an attribute in a schema

 

Method Summary
 java.lang.String getDescription()
          Get the description of the attribute
 java.lang.Integer getLength()
          Get the length of the attribute
 java.lang.String getName()
          Get the name of the attribute
 java.lang.Integer getPrecision()
          Get the precision of the attribute
 java.lang.String getTargetType()
          Get the attribute's data type in the target system
 java.lang.String getType()
          Get the attribute's matching data type in entity manager
 boolean isRequired()
          Get whether the attribute is required
 void setDescription(java.lang.String desc)
          Set the description of the attribute
 void setLength(int len)
          Set the length of the attribute
 void setName(java.lang.String name)
          Set the name of the attribute
 void setPrecision(int precision)
          Set the precision of the attribute
 void setRequired(boolean required)
          Set whether the attribute is required
 void setTargetType(java.lang.String targetType)
          Set the attribute's data type in the target system
 void setType(java.lang.String type)
          Set the attribute's matching data type in entity manager

 

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

 

Constructor Detail

SchemaAttribute

public SchemaAttribute(java.lang.String name,
                       java.lang.String type,
                       java.lang.String targetType,
                       java.lang.Integer len,
                       java.lang.Integer precision,
                       boolean required,
                       java.lang.String desc)
Represent an attribute in a schema
Parameters:
name - attribute name
type - matching data type in entity manager
targetType - data type in the target system
len - length, null if it is not applicable
precision - precision, null if it is not applicable
required - if it is required
desc - description

Method Detail

getName

public java.lang.String getName()
Get the name of the attribute
Returns:
attribute name

setName

public void setName(java.lang.String name)
Set the name of the attribute
Parameters:
name - attribute name

getType

public java.lang.String getType()
Get the attribute's matching data type in entity manager
Returns:
attribute's matching data type in entity manager

setType

public void setType(java.lang.String type)
Set the attribute's matching data type in entity manager
Parameters:
type - attribute's matching data type in entity manager

getTargetType

public java.lang.String getTargetType()
Get the attribute's data type in the target system
Returns:
attribute's data type in the target system

setTargetType

public void setTargetType(java.lang.String targetType)
Set the attribute's data type in the target system
Parameters:
targetType - attribute's data type in the target system

getLength

public java.lang.Integer getLength()
Get the length of the attribute
Returns:
length, null if it is not applicable

setLength

public void setLength(int len)
Set the length of the attribute
Parameters:
len - length

getPrecision

public java.lang.Integer getPrecision()
Get the precision of the attribute
Returns:
precision, null if it is not applicable

setPrecision

public void setPrecision(int precision)
Set the precision of the attribute
Parameters:
precision - precision

isRequired

public boolean isRequired()
Get whether the attribute is required
Returns:
if the attribute is required

setRequired

public void setRequired(boolean required)
Set whether the attribute is required
Parameters:
required - if the attribute is required

getDescription

public java.lang.String getDescription()
Get the description of the attribute
Returns:
description

setDescription

public void setDescription(java.lang.String desc)
Set the description of the attribute
Parameters:
desc - description

Skip navigation links


Copyright © 2014, Oracle and/or its affiliates. All rights reserved.