Class GSCustomAttribute

java.lang.Object
oracle.webcenter.spaces.metadata.GSCustomAttribute
All Implemented Interfaces:
Serializable

@Exported public class GSCustomAttribute extends Object implements Serializable
This is an interface which represents a custom attribute for a group space or group space template. One can set these custom attributes on the spaces templates through APIs. A custom attribute name, type, description and value should be of type java.langString only. However, these attributes can have any valid string value, type, name.
See Also:
  • Constructor Details

    • GSCustomAttribute

      public GSCustomAttribute()
    • GSCustomAttribute

      public GSCustomAttribute(String name, String value, String type, String description)
      This contructor initializes the GSCustomAttribute
      Parameters:
      name -
      value -
      type -
      description -
  • Method Details

    • getName

      public String getName()
      Returns the attribute name
      Returns:
      String name
    • getDescription

      public String getDescription()
      Returns the attributes description
      Returns:
      String description
    • getType

      public String getType()
      Returns the attribute type
      Returns:
      String type
    • getValue

      public String getValue()
      Returns the attribute value
      Returns:
    • setName

      public void setName(String name)
    • setValue

      public void setValue(String value)
    • setType

      public void setType(String type)
    • setDescription

      public void setDescription(String description)