Skip to content

Commit

Permalink
updating values
Browse files Browse the repository at this point in the history
updating values
  • Loading branch information
danimaniarqsoft committed May 16, 2017
1 parent 5b2746e commit 1b463eb
Show file tree
Hide file tree
Showing 43 changed files with 322 additions and 35 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,20 @@

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;
import org.springframework.validation.beanvalidation.LocalValidatorFactoryBean;

@SpringBootApplication
public class EssenceImplApplication {

@Bean
public LocalValidatorFactoryBean validator() {
System.out.println("----------------------------------");
System.out.println("Running the app");
System.out.println("----------------------------------");
return null;
}
public static void main(String[] args) {
SpringApplication.run(EssenceImplApplication.class, args);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ public abstract class SEAbstractActivity extends SEBasicElement implements Abstr
@DBRef
protected Collection<SECriterion> criterion;

@Override
public Collection<SEActivityAssociation> getActivityAssociation() {
return activityAssociation;
}
Expand All @@ -81,6 +82,7 @@ public void setActivityAssociation(Collection<SEActivityAssociation> activityAss
this.activityAssociation = activityAssociation;
}

@Override
public Collection<SECriterion> getCriterion() {
return criterion;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ public class SEActivity extends SEAbstractActivity implements Activity {
@DBRef
private Collection<SECompetencyLevel> requiredCompetencyLevel;

@Override
public Collection<SEApproach> getApproach() {
return approach;
}
Expand All @@ -107,6 +108,7 @@ public void setApproach(Collection<SEApproach> approach) {
this.approach = approach;
}

@Override
public Collection<SEAction> getAction() {
return action;
}
Expand All @@ -115,6 +117,7 @@ public void setAction(Collection<SEAction> action) {
this.action = action;
}

@Override
public Collection<SECompetencyLevel> getRequiredCompetencyLevel() {
return requiredCompetencyLevel;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ public class SEActivityAssociation extends SELanguageElement implements Activity
/** The kind of the association. */
private String kind;

@Override
public SEAbstractActivity getEnd2() {
return end2;
}
Expand All @@ -103,6 +104,7 @@ public void setEnd2(SEAbstractActivity end2) {
this.end2 = end2;
}

@Override
public SEAbstractActivity getEnd1() {
return end1;
}
Expand All @@ -111,6 +113,7 @@ public void setEnd1(SEAbstractActivity end1) {
this.end1 = end1;
}

@Override
public String getKind() {
return kind;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ public class SEActivitySpace extends SEAbstractActivity implements ActivitySpace
@DBRef
private Collection<SEAlpha> input;

@Override
public Collection<SEAlpha> getInput() {
return input;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ public class SEApproach extends SELanguageElement implements Approach {
*/
private String description;

@Override
public SEActivity getActivity() {
return activity;
}
Expand All @@ -80,6 +81,7 @@ public void setActivity(SEActivity activity) {
this.activity = activity;
}

@Override
public String getName() {
return name;
}
Expand All @@ -88,6 +90,7 @@ public void setName(String name) {
this.name = name;
}

@Override
public String getDescription() {
return description;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ public abstract class SECriterion extends SELanguageElement implements Criterion
/** The description of the Criterion */
protected String description;

@Override
public SEAbstractActivity getActivity() {
return activity;
}
Expand All @@ -88,6 +89,7 @@ public void setActivity(SEAbstractActivity activity) {
this.activity = activity;
}

@Override
public SEState getState() {
return state;
}
Expand All @@ -96,6 +98,7 @@ public void setState(SEState state) {
this.state = state;
}

@Override
public SELevelOfDetail getLevelOfDetail() {
return levelOfDetail;
}
Expand All @@ -104,6 +107,7 @@ public void setLevelOfDetail(SELevelOfDetail levelOfDetail) {
this.levelOfDetail = levelOfDetail;
}

@Override
public String getDescription() {
return description;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ public class SEAlpha extends SEBasicElement implements Alpha {
@DBRef
private Collection<SEWorkProductManifest> workProductManifest;

@Override
public Collection<SEState> getStates() {
return states;
}
Expand All @@ -134,6 +135,7 @@ public void setStates(Collection<SEState> states) {
this.states = states;
}

@Override
public Collection<SEAction> getAction() {
return action;
}
Expand All @@ -142,6 +144,7 @@ public void setAction(Collection<SEAction> action) {
this.action = action;
}

@Override
public SEActivitySpace getActivitySpace() {
return activitySpace;
}
Expand All @@ -150,6 +153,7 @@ public void setActivitySpace(SEActivitySpace activitySpace) {
this.activitySpace = activitySpace;
}

@Override
public Collection<SEAlphaContainment> getAlphaContainment() {
return alphaContainment;
}
Expand All @@ -158,6 +162,7 @@ public void setAlphaContainment(Collection<SEAlphaContainment> alphaContainment)
this.alphaContainment = alphaContainment;
}

@Override
public Collection<SEAlphaAssociation> getAlphaAssociation() {
return alphaAssociation;
}
Expand All @@ -166,6 +171,7 @@ public void setAlphaAssociation(Collection<SEAlphaAssociation> alphaAssociation)
this.alphaAssociation = alphaAssociation;
}

@Override
public Collection<SEWorkProductManifest> getWorkProductManifest() {
return workProductManifest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ public class SEAlphaAssociation extends SELanguageElement implements AlphaAssoci
@DBRef
private SEAlpha end2;

@Override
public int getEnd1lowerBound() {
return end1lowerBound;
}
Expand All @@ -99,6 +100,7 @@ public void setEnd1lowerBound(int end1lowerBound) {
this.end1lowerBound = end1lowerBound;
}

@Override
public int getEnd1upperBound() {
return end1upperBound;
}
Expand All @@ -107,6 +109,7 @@ public void setEnd1upperBound(int end1upperBound) {
this.end1upperBound = end1upperBound;
}

@Override
public int getEnd2lowerBound() {
return end2lowerBound;
}
Expand All @@ -115,6 +118,7 @@ public void setEnd2lowerBound(int end2lowerBound) {
this.end2lowerBound = end2lowerBound;
}

@Override
public int getEnd2upperBound() {
return end2upperBound;
}
Expand All @@ -123,6 +127,7 @@ public void setEnd2upperBound(int end2upperBound) {
this.end2upperBound = end2upperBound;
}

@Override
public String getName() {
return name;
}
Expand All @@ -131,6 +136,7 @@ public void setName(String name) {
this.name = name;
}

@Override
public Alpha getEnd1() {
return end1;
}
Expand All @@ -139,6 +145,7 @@ public void setEnd1(SEAlpha end1) {
this.end1 = end1;
}

@Override
public SEAlpha getEnd2() {
return end2;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ public class SEAlphaContainment extends SELanguageElement implements AlphaContai
@DBRef
private SEAlpha subordinateAlpha;

@Override
public int getLowerBound() {
return lowerBound;
}
Expand All @@ -88,6 +89,7 @@ public void setLowerBound(int lowerBound) {
this.lowerBound = lowerBound;
}

@Override
public int getUpperBound() {
return upperBound;
}
Expand All @@ -96,6 +98,7 @@ public void setUpperBound(int upperBound) {
this.upperBound = upperBound;
}

@Override
public SEAlpha getSuperAlpha() {
return superAlpha;
}
Expand All @@ -104,6 +107,7 @@ public void setSuperAlpha(SEAlpha superAlpha) {
this.superAlpha = superAlpha;
}

@Override
public SEAlpha getSubordinateAlpha() {
return subordinateAlpha;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ public class SELevelOfDetail extends SELanguageElement implements LevelOfDetail
@DBRef
private SEWorkProduct workProduct;

@Override
public String getDescription() {
return description;
}
Expand All @@ -128,6 +129,7 @@ public void setDescription(String description) {
this.description = description;
}

@Override
public boolean isSufficientLevel() {
return isSufficientLevel;
}
Expand All @@ -136,6 +138,7 @@ public void setSufficientLevel(boolean isSufficientLevel) {
this.isSufficientLevel = isSufficientLevel;
}

@Override
public String getName() {
return name;
}
Expand All @@ -144,6 +147,7 @@ public void setName(String name) {
this.name = name;
}

@Override
public Collection<SECheckpoint> getCheckListItem() {
return checkListItem;
}
Expand All @@ -152,6 +156,7 @@ public void setCheckListItem(Collection<SECheckpoint> checkListItem) {
this.checkListItem = checkListItem;
}

@Override
public SELevelOfDetail getSuccessor() {
return successor;
}
Expand All @@ -160,6 +165,7 @@ public void setSuccessor(SELevelOfDetail successor) {
this.successor = successor;
}

@Override
public Collection<SECriterion> getCriterion() {
return criterion;
}
Expand All @@ -168,6 +174,7 @@ public void setCriterion(Collection<SECriterion> criterion) {
this.criterion = criterion;
}

@Override
public SELevelOfDetail getPredecessor() {
return predecessor;
}
Expand All @@ -176,6 +183,7 @@ public void setPredecessor(SELevelOfDetail predecessor) {
this.predecessor = predecessor;
}

@Override
public SEWorkProduct getWorkProduct() {
return workProduct;
}
Expand Down
Loading

0 comments on commit 1b463eb

Please sign in to comment.