Skip to content
Snippets Groups Projects
Commit 5feeb9de authored by Henrik tom Wörden's avatar Henrik tom Wörden
Browse files

STY: fix line length

parent 6f81c44a
No related branches found
No related tags found
1 merge request!2F consolidation
Pipeline #12132 passed with warnings
...@@ -462,13 +462,20 @@ message Hash { ...@@ -462,13 +462,20 @@ message Hash {
enum Importance { enum Importance {
// The importance is unset/unknown. // The importance is unset/unknown.
IMPORTANCE_UNSPECIFIED = 0; IMPORTANCE_UNSPECIFIED = 0;
// The property is obligatory for children of this entity. The server will flag an error when an obligatory property of a parent is missing during updates or insertions of a child entity. It says: "YOU MUST!" // The property is obligatory for children of this entity. The server will
// flag an error when an obligatory property of a parent is missing during
// updates or insertions of a child entity. It says: "YOU MUST!"
IMPORTANCE_OBLIGATORY = 1; IMPORTANCE_OBLIGATORY = 1;
// The property is recommended for children of this entity. The server will flag a warning when a recommended property of a parent is missing during updates or insertions of a child entity. It says: "YOU SHOULD!" // The property is recommended for children of this entity. The server will
// flag a warning when a recommended property of a parent is missing during
// updates or insertions of a child entity. It says: "YOU SHOULD!"
IMPORTANCE_RECOMMENDED = 2; IMPORTANCE_RECOMMENDED = 2;
// The property is merely suggested for children of this entity. It says: "YOU MAY WANT TO?" // The property is merely suggested for children of this entity. It says:
// "YOU MAY WANT TO?"
IMPORTANCE_SUGGESTED = 3; IMPORTANCE_SUGGESTED = 3;
// The property is fix and child entities should not add this property to themselves (This is a bit like static in object-oriented programming languages). It says: "KINDLY IGNORE THIS ONE FOR CHILDREN OF THIS ENTITY" // The property is fix and child entities should not add this property to
// themselves (This is a bit like static in object-oriented programming
// languages). It says: "KINDLY IGNORE THIS ONE FOR CHILDREN OF THIS ENTITY"
IMPORTANCE_FIX = 4; IMPORTANCE_FIX = 4;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment