org.systinet.wasp.dd
Interface Packager

All Superinterfaces:
DeploymentPart

public interface Packager
extends DeploymentPart

This interface contains an information about the author of the deployment package.

Since:
4.0
Component:
Core

Method Summary
 java.lang.String getCompany()
          Returns the company which has created the package.
 java.lang.String getEmail()
          Returns an email address of the packager.
 java.lang.String getName()
          Returns the name of the packager.
 Endpoint getUrl()
          Returns the URL where more information about the packager can be found.
 void setCompany(java.lang.String company)
          Sets the company which has created the package.
 void setEmail(java.lang.String email)
          Sets the email address of the packager.
 void setName(java.lang.String name)
          Sets the name of the packager.
 void setUrl(Endpoint url)
          Sets the URL where more information about the packager can be found.
 
Methods inherited from interface org.systinet.wasp.dd.DeploymentPart
getDeploymentDescriptor
 

Method Detail

getName

public java.lang.String getName()
Returns the name of the packager.

Returns:
the name of the packager

setName

public void setName(java.lang.String name)
Sets the name of the packager.

Parameters:
name - the name of the packager

getEmail

public java.lang.String getEmail()
Returns an email address of the packager.

Returns:
an email address of the packager

setEmail

public void setEmail(java.lang.String email)
Sets the email address of the packager.

Parameters:
email - the email address of the packager

getCompany

public java.lang.String getCompany()
Returns the company which has created the package.

Returns:
the company which has created the package

setCompany

public void setCompany(java.lang.String company)
Sets the company which has created the package.

Parameters:
company - the company which has created the package

getUrl

public Endpoint getUrl()
Returns the URL where more information about the packager can be found.

Returns:
the URL where more information about the packager can be found

setUrl

public void setUrl(Endpoint url)
Sets the URL where more information about the packager can be found.

Parameters:
url - the URL where more information about the packager can be found