Example #1
0
 public function __construct(ProfileObjectBuilder $builder)
 {
     parent::__construct($builder->getObjectID());
     $this->setGlobalID($builder->getGlobalID());
     $this->setDisplayName($builder->getDisplayName());
     $this->setParamArray($builder->getParamArray());
 }
Example #2
0
 public function __construct(LinkRequestObjectBuilder $builder)
 {
     parent::__construct($builder->getObjectID());
     $this->setInitiatingGID($builder->getInitiatingGID());
     $this->setTargetedGID($builder->getTargetedGID());
     $this->setDatetime($builder->getDatetime());
     $this->setMessage($builder->getMessage());
 }
 public function __construct(AccessControlGroupObjectBuilder $builder)
 {
     parent::__construct($builder->getObjectID());
     $this->owner = $builder->getOwner();
     $this->displayName = $builder->getDisplayName();
     $this->members = $builder->getMembers();
     asort($this->members);
 }
Example #4
0
 public function __construct(FeatureObjectBuilder $builder)
 {
     parent::__construct($builder->getObjectID());
     $this->namespace = $builder->getFeatureNamespace();
     $this->name = $builder->getName();
     $this->version = $builder->getVersion();
     $this->compatibilityVersion = $builder->getCompatibilityVersion();
     $this->apiPath = $builder->getApiPath();
 }
 public function __construct(AccessControlRuleObjectBuilder $builder)
 {
     parent::__construct($builder->getObjectID());
     $this->owner = $builder->getOwner();
     $this->index = $builder->getIndex();
     $this->directive = $builder->getDirective();
     $this->entityType = $builder->getEntityType();
     $this->entityID = $builder->getEntityID();
     $this->targetType = $builder->getTargetType();
     $this->target = $builder->getTarget();
     $this->accessType = $builder->getAccessType();
 }
Example #6
0
 public function __construct($objectID, $targetID)
 {
     parent::__construct($objectID);
     $this->targetID = $targetID;
 }
Example #7
0
 public function __construct(LinkRosterObjectBuilder $builder)
 {
     parent::__construct($builder->getObjectID());
     $this->setOwner($builder->getOwner());
     $this->addLinkArray($builder->getRoster());
 }