cisco.uc.cuae.mgmt
Class Management.Module

java.lang.Object
  extended by cisco.uc.cuae.mgmt.Management.Module
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
Management.Application, Management.Component
Enclosing interface:
Management

public static class Management.Module
extends java.lang.Object
implements java.io.Serializable

Service as a base class

See Also:
Serialized Form

Field Summary
 java.lang.String author
          the author
 java.lang.String authorUrl
          the url of the author
 java.lang.String copyright
          any copyright claim
 java.lang.String description
          a longer description
 java.lang.String displayName
          The name to display
 java.lang.String id
          The unique id of the plugin
 java.lang.String name
          The name
 java.lang.String status
          the current status.
 java.lang.String supportUrl
          the url for support
 java.lang.String version
          the plugin version
 
Constructor Summary
Management.Module()
          Constructs the Module.
Management.Module(java.lang.String id, java.lang.String name, java.lang.String displayName, java.lang.String version, java.lang.String status, java.lang.String copyright, java.lang.String description, java.lang.String author, java.lang.String authorUrl, java.lang.String supportUrl)
          Constructs the Module.
 
Method Summary
 java.lang.String getAuthor()
          Gets the value.
 java.lang.String getAuthorUrl()
          Gets the value.
 java.lang.String getCopyright()
          Gets the value.
 java.lang.String getDescription()
          Gets the value.
 java.lang.String getDisplayName()
          Gets the value.
 java.lang.String getId()
          Gets the value.
 java.lang.String getName()
          Gets the value.
 java.lang.String getStatus()
          Gets the value.
 java.lang.String getSupportUrl()
          Gets the value.
 java.lang.String getVersion()
          Gets the value.
 void setAuthor(java.lang.String value)
          Sets the value.
 void setAuthorUrl(java.lang.String value)
          Sets the value.
 void setCopyright(java.lang.String value)
          Sets the value.
 void setDescription(java.lang.String value)
          Sets the value.
 void setDisplayName(java.lang.String value)
          Sets the value.
 void setId(java.lang.String value)
          Sets the value.
 void setName(java.lang.String value)
          Sets the value.
 void setStatus(java.lang.String value)
          Sets the value.
 void setSupportUrl(java.lang.String value)
          Sets the value.
 void setVersion(java.lang.String value)
          Sets the value.
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

id

public java.lang.String id
The unique id of the plugin


name

public java.lang.String name
The name


displayName

public java.lang.String displayName
The name to display


version

public java.lang.String version
the plugin version


status

public java.lang.String status
the current status. Valid values are: UNSPECIFIED: the current state is unknown DISABLED_STOPPED: the module is disabled and has been stopped DISABLED_ERROR: the module is disabled because of an error while starting DISABLED_RUNNING: not currently used (marked disabled but not yet stopped) ENABLED_STOPPED: enabled but not yet running ENABLED_RUNNING: enabled and running, all systems are go


copyright

public java.lang.String copyright
any copyright claim


description

public java.lang.String description
a longer description


author

public java.lang.String author
the author


authorUrl

public java.lang.String authorUrl
the url of the author


supportUrl

public java.lang.String supportUrl
the url for support

Constructor Detail

Management.Module

public Management.Module()
Constructs the Module. Don't init any fields.


Management.Module

public Management.Module(java.lang.String id,
                         java.lang.String name,
                         java.lang.String displayName,
                         java.lang.String version,
                         java.lang.String status,
                         java.lang.String copyright,
                         java.lang.String description,
                         java.lang.String author,
                         java.lang.String authorUrl,
                         java.lang.String supportUrl)
Constructs the Module.

Parameters:
id - The unique id of the plugin
name - The name
displayName - The name to display
version - the plugin version
status - the current status. Valid values are: status UNSPECIFIED: the current state is unknown status DISABLED_STOPPED: the module is disabled and has been stopped status DISABLED_ERROR: the module is disabled because of an error while starting status DISABLED_RUNNING: not currently used (marked disabled but not yet stopped) status ENABLED_STOPPED: enabled but not yet running status ENABLED_RUNNING: enabled and running, all systems are go
copyright - any copyright claim
description - a longer description
author - the author
authorUrl - the url of the author
supportUrl - the url for support
Method Detail

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object

getId

public java.lang.String getId()
Gets the value. The unique id of the plugin

Returns:
the value.

setId

public void setId(java.lang.String value)
Sets the value. The unique id of the plugin

Parameters:
value - the value.

getName

public java.lang.String getName()
Gets the value. The name

Returns:
the value.

setName

public void setName(java.lang.String value)
Sets the value. The name

Parameters:
value - the value.

getDisplayName

public java.lang.String getDisplayName()
Gets the value. The name to display

Returns:
the value.

setDisplayName

public void setDisplayName(java.lang.String value)
Sets the value. The name to display

Parameters:
value - the value.

getVersion

public java.lang.String getVersion()
Gets the value. the plugin version

Returns:
the value.

setVersion

public void setVersion(java.lang.String value)
Sets the value. the plugin version

Parameters:
value - the value.

getStatus

public java.lang.String getStatus()
Gets the value. the current status. Valid values are: UNSPECIFIED: the current state is unknown DISABLED_STOPPED: the module is disabled and has been stopped DISABLED_ERROR: the module is disabled because of an error while starting DISABLED_RUNNING: not currently used (marked disabled but not yet stopped) ENABLED_STOPPED: enabled but not yet running ENABLED_RUNNING: enabled and running, all systems are go

Returns:
the value.

setStatus

public void setStatus(java.lang.String value)
Sets the value. the current status. Valid values are: UNSPECIFIED: the current state is unknown DISABLED_STOPPED: the module is disabled and has been stopped DISABLED_ERROR: the module is disabled because of an error while starting DISABLED_RUNNING: not currently used (marked disabled but not yet stopped) ENABLED_STOPPED: enabled but not yet running ENABLED_RUNNING: enabled and running, all systems are go

Parameters:
value - the value.

getCopyright

public java.lang.String getCopyright()
Gets the value. any copyright claim

Returns:
the value.

setCopyright

public void setCopyright(java.lang.String value)
Sets the value. any copyright claim

Parameters:
value - the value.

getDescription

public java.lang.String getDescription()
Gets the value. a longer description

Returns:
the value.

setDescription

public void setDescription(java.lang.String value)
Sets the value. a longer description

Parameters:
value - the value.

getAuthor

public java.lang.String getAuthor()
Gets the value. the author

Returns:
the value.

setAuthor

public void setAuthor(java.lang.String value)
Sets the value. the author

Parameters:
value - the value.

getAuthorUrl

public java.lang.String getAuthorUrl()
Gets the value. the url of the author

Returns:
the value.

setAuthorUrl

public void setAuthorUrl(java.lang.String value)
Sets the value. the url of the author

Parameters:
value - the value.

getSupportUrl

public java.lang.String getSupportUrl()
Gets the value. the url for support

Returns:
the value.

setSupportUrl

public void setSupportUrl(java.lang.String value)
Sets the value. the url for support

Parameters:
value - the value.


Copyright © 2010. All Rights Reserved.