This class provides a strong typing for a GCS Authority. Any obj of this class that appears outside of the package is a valid GCS Authority.
Inheritance: XRIAuthority
Example #1
0
 /**
  * Sets the XRD for the "=" Authority.
  * @param oDesc The descriptor for the "=" Authority
  */
 public void setEqualsAuthority(XRD oDesc)
 {
 	GCSAuthority oAuth = new GCSAuthority("=");
 	set(oAuth, oDesc);
 	
 }
Example #2
0
 /**
  * Sets the XRD for the "@" Authority.
  * @param oDesc The descriptor for the "@" Authority
  * @deprecated
  */
 public void setAtAuthority(XRD oDesc)
 {
 	GCSAuthority oAuth = new GCSAuthority("@");
 	set(oAuth, oDesc);
 	
 }