/**
  * Construction de l'instance
  *
  * @param String $id             String
  * @param String $registryObject String
  * @param String $value          String
  */
 function __construct($id, $registryObject, $value)
 {
     parent::__construct($id);
     $this->registryObject = $registryObject;
     $this->value = $value;
     $this->objectType = "urn:oasis:names:tc:ebxmlregrep:ObjectType:RegistryObject:ExternalIdentifier";
 }
예제 #2
0
 /**
  * Construction de l'instance
  *
  * @param String $id              Identifiant
  * @param String $sourceObject    Source
  * @param String $targetObject    Cible
  * @param String $associationType Association de type remplacement
  */
 function __construct($id, $sourceObject, $targetObject, $associationType = null)
 {
     parent::__construct($id);
     $this->associationType = "urn:oasis:names:tc:ebxml-regrep:AssociationType:HasMember";
     if ($associationType) {
         $this->associationType = $associationType;
     }
     $this->sourceObject = $sourceObject;
     $this->targetObject = $targetObject;
     $this->objectType = "urn:oasis:names:tc:ebxml-regrep:ObjectType:RegistryObject:Association";
 }
예제 #3
0
 /**
  * @see parent::__construct()
  */
 function __construct($id)
 {
     parent::__construct($id);
     $this->objectType = "urn:oasis:names:tc:ebxmlregrep:ObjectType:RegistryObject:Classification";
 }