Skip to content

Commit

Permalink
2.10 update
Browse files Browse the repository at this point in the history
  • Loading branch information
remmeier committed Nov 29, 2018
1 parent b1dd74a commit 0d49a08
Show file tree
Hide file tree
Showing 12 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion crnk-example-frontend/src/resources/attribute.change.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export module QAttributeChange {
new QTypedManyResourceRelationship<QAttributeChange, AttributeChange>(this, 'attributeChanges', QAttributeChange);
}
return this._attributeChanges;
};
}
}
export class QAttributes extends BeanPath<AttributeChange.Attributes> {
attribute: StringPath = this.createString('attribute');
Expand Down
2 changes: 1 addition & 1 deletion crnk-example-frontend/src/resources/location.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export module QLocation {
new QTypedManyResourceRelationship<QAttributeChange, AttributeChange>(this, 'attributeChanges', QAttributeChange);
}
return this._attributeChanges;
};
}
}
}
export let createEmptyLocation = function(id: string): Location {
Expand Down
2 changes: 1 addition & 1 deletion crnk-example-frontend/src/resources/login.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export module QLogin {
new QTypedManyResourceRelationship<QAttributeChange, AttributeChange>(this, 'attributeChanges', QAttributeChange);
}
return this._attributeChanges;
};
}
}
export class QAttributes extends BeanPath<Login.Attributes> {
userName: StringPath = this.createString('userName');
Expand Down
4 changes: 2 additions & 2 deletions crnk-example-frontend/src/resources/movie.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,15 @@ export module QMovie {
new QTypedManyResourceRelationship<QRole, Role>(this, 'roles', QRole);
}
return this._roles;
};
}
private _attributeChanges: QTypedManyResourceRelationship<QAttributeChange, AttributeChange>;
get attributeChanges(): QTypedManyResourceRelationship<QAttributeChange, AttributeChange> {
if (!this._attributeChanges) {
this._attributeChanges =
new QTypedManyResourceRelationship<QAttributeChange, AttributeChange>(this, 'attributeChanges', QAttributeChange);
}
return this._attributeChanges;
};
}
}
export class QAttributes extends BeanPath<Movie.Attributes> {
name: StringPath = this.createString('name');
Expand Down
4 changes: 2 additions & 2 deletions crnk-example-frontend/src/resources/person.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,15 @@ export module QPerson {
new QTypedManyResourceRelationship<QRole, Role>(this, 'roles', QRole);
}
return this._roles;
};
}
private _attributeChanges: QTypedManyResourceRelationship<QAttributeChange, AttributeChange>;
get attributeChanges(): QTypedManyResourceRelationship<QAttributeChange, AttributeChange> {
if (!this._attributeChanges) {
this._attributeChanges =
new QTypedManyResourceRelationship<QAttributeChange, AttributeChange>(this, 'attributeChanges', QAttributeChange);
}
return this._attributeChanges;
};
}
}
export class QAttributes extends BeanPath<Person.Attributes> {
name: StringPath = this.createString('name');
Expand Down
6 changes: 3 additions & 3 deletions crnk-example-frontend/src/resources/role.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,23 +63,23 @@ export module QRole {
new QTypedOneResourceRelationship<QMovie, Movie>(this, 'movie', QMovie);
}
return this._movie;
};
}
private _person: QTypedOneResourceRelationship<QPerson, Person>;
get person(): QTypedOneResourceRelationship<QPerson, Person> {
if (!this._person) {
this._person =
new QTypedOneResourceRelationship<QPerson, Person>(this, 'person', QPerson);
}
return this._person;
};
}
private _attributeChanges: QTypedManyResourceRelationship<QAttributeChange, AttributeChange>;
get attributeChanges(): QTypedManyResourceRelationship<QAttributeChange, AttributeChange> {
if (!this._attributeChanges) {
this._attributeChanges =
new QTypedManyResourceRelationship<QAttributeChange, AttributeChange>(this, 'attributeChanges', QAttributeChange);
}
return this._attributeChanges;
};
}
}
export class QAttributes extends BeanPath<Role.Attributes> {
role: StringPath = this.createString('role');
Expand Down
2 changes: 1 addition & 1 deletion crnk-example-frontend/src/resources/schedule.dto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export module QScheduleDto {
new QTypedManyResourceRelationship<QAttributeChange, AttributeChange>(this, 'attributeChanges', QAttributeChange);
}
return this._attributeChanges;
};
}
}
export class QAttributes extends BeanPath<ScheduleDto.Attributes> {
name: StringPath = this.createString('name');
Expand Down
4 changes: 2 additions & 2 deletions crnk-example-frontend/src/resources/schedule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,15 @@ export module QSchedule {
new QTypedOneResourceRelationship<QMovie, Movie>(this, 'movie', QMovie);
}
return this._movie;
};
}
private _attributeChanges: QTypedManyResourceRelationship<QAttributeChange, AttributeChange>;
get attributeChanges(): QTypedManyResourceRelationship<QAttributeChange, AttributeChange> {
if (!this._attributeChanges) {
this._attributeChanges =
new QTypedManyResourceRelationship<QAttributeChange, AttributeChange>(this, 'attributeChanges', QAttributeChange);
}
return this._attributeChanges;
};
}
}
export class QAttributes extends BeanPath<Schedule.Attributes> {
name: StringPath = this.createString('name');
Expand Down
6 changes: 3 additions & 3 deletions crnk-example-frontend/src/resources/screening.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,23 +57,23 @@ export module QScreening {
new QTypedOneResourceRelationship<QMovie, Movie>(this, 'movie', QMovie);
}
return this._movie;
};
}
private _location: QTypedOneResourceRelationship<QLocation, Location>;
get location(): QTypedOneResourceRelationship<QLocation, Location> {
if (!this._location) {
this._location =
new QTypedOneResourceRelationship<QLocation, Location>(this, 'location', QLocation);
}
return this._location;
};
}
private _attributeChanges: QTypedManyResourceRelationship<QAttributeChange, AttributeChange>;
get attributeChanges(): QTypedManyResourceRelationship<QAttributeChange, AttributeChange> {
if (!this._attributeChanges) {
this._attributeChanges =
new QTypedManyResourceRelationship<QAttributeChange, AttributeChange>(this, 'attributeChanges', QAttributeChange);
}
return this._attributeChanges;
};
}
}
}
export let createEmptyScreening = function(id: string): Screening {
Expand Down
2 changes: 1 addition & 1 deletion crnk-example-frontend/src/resources/secret.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export module QSecret {
new QTypedManyResourceRelationship<QAttributeChange, AttributeChange>(this, 'attributeChanges', QAttributeChange);
}
return this._attributeChanges;
};
}
}
export class QAttributes extends BeanPath<Secret.Attributes> {
name: StringPath = this.createString('name');
Expand Down
4 changes: 2 additions & 2 deletions crnk-example-frontend/src/resources/vote.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,15 @@ export module QVote {
new QTypedOneResourceRelationship<QMovie, Movie>(this, 'movie', QMovie);
}
return this._movie;
};
}
private _attributeChanges: QTypedManyResourceRelationship<QAttributeChange, AttributeChange>;
get attributeChanges(): QTypedManyResourceRelationship<QAttributeChange, AttributeChange> {
if (!this._attributeChanges) {
this._attributeChanges =
new QTypedManyResourceRelationship<QAttributeChange, AttributeChange>(this, 'attributeChanges', QAttributeChange);
}
return this._attributeChanges;
};
}
}
export class QAttributes extends BeanPath<Vote.Attributes> {
count: NumberPath = this.createNumber('count');
Expand Down
2 changes: 1 addition & 1 deletion versions.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
crnk.version=2.9.20181028143330
crnk.version=2.10.20181129142450

0 comments on commit 0d49a08

Please sign in to comment.