stable

Clone or download

Read-only

Split adapter namespace

part of story #17879 add Teams to Programs Why this change? There is many adapter under the namespace /program in next patch I will add way to configure hierarchy between program and team, so I'm assuming that I'll need to add more classes inside Let's split the namespace with the same structure than the domain. No functional changes Change-Id: I94df6f70a8e408831c51538cdccc4c51a5b7e8b4

Modified Files

Name
R plugins/scaled_agile/include/Adapter/Program/ArtifactCreationException.php Go to diff View file
R plugins/scaled_agile/include/Adapter/Program/ArtifactCreatorAdapter.php Go to diff View file
R plugins/scaled_agile/include/Adapter/Program/ArtifactLinkFieldAdapter.php Go to diff View file
R plugins/scaled_agile/include/Adapter/Program/ArtifactLinkValueAdapter.php Go to diff View file
R plugins/scaled_agile/include/Adapter/Program/DescriptionFieldAdapter.php Go to diff View file
R plugins/scaled_agile/include/Adapter/Program/DescriptionValueAdapter.php Go to diff View file
R plugins/scaled_agile/include/Adapter/Program/EndPeriodValueAdapter.php Go to diff View file
R plugins/scaled_agile/include/Adapter/Program/ReplicationDataAdapter.php Go to diff View file
R plugins/scaled_agile/include/Adapter/Program/SourceChangesetValuesCollectionAdapter.php Go to diff View file
R plugins/scaled_agile/include/Adapter/Program/StartDateValueAdapter.php Go to diff View file
R plugins/scaled_agile/include/Adapter/Program/StatusFieldAdapter.php Go to diff View file
R plugins/scaled_agile/include/Adapter/Program/StatusValueAdapter.php Go to diff View file
R plugins/scaled_agile/include/Adapter/Program/SynchronizedFieldsAdapter.php Go to diff View file
R plugins/scaled_agile/include/Adapter/Program/TimeFrameFieldsAdapter.php Go to diff View file
R plugins/scaled_agile/include/Adapter/Program/TitleFieldAdapter.php Go to diff View file
R plugins/scaled_agile/include/Adapter/Program/TitleValueAdapter.php Go to diff View file
R plugins/scaled_agile/include/Adapter/Plan/PlanDao.php Go to diff View file
R plugins/scaled_agile/include/Adapter/Plan/PlanTrackerDoesNotBelongToProjectException.php Go to diff View file
R plugins/scaled_agile/include/Adapter/Plan/PlanTrackerException.php Go to diff View file
R plugins/scaled_agile/include/Adapter/Plan/PlanTrackerNotFoundException.php Go to diff View file
R plugins/scaled_agile/include/Adapter/Plan/PlannableTrackerCannotBeEmptyException.php Go to diff View file
R plugins/scaled_agile/include/Adapter/Program/ProgramAccessException.php Go to diff View file
R plugins/scaled_agile/include/Adapter/Program/ProgramAdapter.php Go to diff View file
R plugins/scaled_agile/include/Adapter/Plan/ProgramTrackerAdapter.php Go to diff View file
R plugins/scaled_agile/include/Adapter/Program/ProjectIsNotAProgramException.php Go to diff View file
M plugins/scaled_agile/include/Adapter/Program/PlanningAdapter.php +1 −1 Go to diff View file
M plugins/scaled_agile/include/Program/Administration/PlannableItems/PlannableItemsTrackersUpdater.php +1 −1 Go to diff View file
M plugins/scaled_agile/include/Program/Administration/PlannableItems/Presenter/PlannableItemsPerTeamPresenterCollectionBuilder.php +1 −1 Go to diff View file
M plugins/scaled_agile/include/Program/Administration/ReadOnlyProgramAdminViewController.php +2 −2 Go to diff View file
M plugins/scaled_agile/include/Program/Backlog/AsynchronousCreation/ArtifactCreatedHandler.php +2 −2 Go to diff View file
M plugins/scaled_agile/include/Program/Backlog/AsynchronousCreation/CreateProgramIncrementsRunner.php +1 −1 Go to diff View file
M plugins/scaled_agile/include/Program/Backlog/AsynchronousCreation/CreateProgramIncrementsTask.php +17 −17 Go to diff View file
M plugins/scaled_agile/include/Program/Backlog/AsynchronousCreation/ProgramIncrementsCreator.php +3 −3 Go to diff View file
M plugins/scaled_agile/include/Program/Backlog/ProgramIncrement/Source/Fields/SynchronizedFieldDataFromProgramAndTeamTrackersCollectionBuilder.php +1 −1 Go to diff View file
M plugins/scaled_agile/include/Program/Backlog/TrackerCollectionFactory.php +2 −2 Go to diff View file
M plugins/scaled_agile/include/Program/Plan/BuildProgram.php +2 −2 Go to diff View file
M plugins/scaled_agile/include/Program/Plan/BuildTracker.php +3 −3 Go to diff View file
M plugins/scaled_agile/include/Program/Plan/CreatePlan.php +5 −5 Go to diff View file
M plugins/scaled_agile/include/Program/Plan/PlanCreator.php +5 −5 Go to diff View file
M plugins/scaled_agile/include/REST/v1/ProjectResource.php +8 −8 Go to diff View file
M plugins/scaled_agile/include/Team/Creation/CreateTeam.php +2 −2 Go to diff View file
M plugins/scaled_agile/include/Team/Creation/TeamCreator.php +2 −2 Go to diff View file
M plugins/scaled_agile/include/scaled_agilePlugin.php +10 −10 Go to diff View file
R plugins/scaled_agile/tests/unit/Adapter/Program/ArtifactCreatorAdapterTest.php Go to diff View file
R plugins/scaled_agile/tests/unit/Adapter/Program/ArtifactLinkFieldAdapterTest.php Go to diff View file
R plugins/scaled_agile/tests/unit/Adapter/Program/ArtifactLinkValueAdapterTest.php Go to diff View file
R plugins/scaled_agile/tests/unit/Adapter/Program/DescriptionFieldAdapterTest.php Go to diff View file
R plugins/scaled_agile/tests/unit/Adapter/Program/DescriptionValueAdapterTest.php Go to diff View file
R plugins/scaled_agile/tests/unit/Adapter/Program/EndPeriodValueAdapterTest.php Go to diff View file
R plugins/scaled_agile/tests/unit/Adapter/Program/ReplicationDataAdapterTest.php Go to diff View file
R plugins/scaled_agile/tests/unit/Adapter/Program/StartDateValueAdapterTest.php Go to diff View file
R plugins/scaled_agile/tests/unit/Adapter/Program/StatusFieldAdapterTest.php Go to diff View file
R plugins/scaled_agile/tests/unit/Adapter/Program/StatusValueAdapterTest.php Go to diff View file
R plugins/scaled_agile/tests/unit/Adapter/Program/TimeFrameFieldsAdapterTest.php Go to diff View file
R plugins/scaled_agile/tests/unit/Adapter/Program/TitleFieldAdapterTest.php Go to diff View file
R plugins/scaled_agile/tests/unit/Adapter/Program/TitleValueAdapterTest.php Go to diff View file
R plugins/scaled_agile/tests/unit/Adapter/Program/ProgramAdapterTest.php Go to diff View file
R plugins/scaled_agile/tests/unit/Adapter/Plan/ProgramTrackerAdapterTest.php Go to diff View file
R plugins/scaled_agile/tests/unit/Program/PlanningConfiguration/PlanningAdapterTest.php Go to diff View file
M plugins/scaled_agile/tests/unit/Program/Administration/PlannableItems/Presenter/PlannableItemsPerTeamPresenterCollectionBuilderTest.php +2 −2 Go to diff View file
M plugins/scaled_agile/tests/unit/Program/Administration/ReadOnlyProgramAdminViewControllerTest.php +1 −1 Go to diff View file
M plugins/scaled_agile/tests/unit/Program/Backlog/AsynchronousCreation/ArtifactCreatedHandlerTest.php +1 −1 Go to diff View file
M plugins/scaled_agile/tests/unit/Program/Backlog/AsynchronousCreation/CreateProgramIncrementsRunnerTest.php +1 −1 Go to diff View file
M plugins/scaled_agile/tests/unit/Program/Backlog/AsynchronousCreation/CreateProgramIncrementsTaskTest.php +7 −7 Go to diff View file
M plugins/scaled_agile/tests/unit/Program/Backlog/AsynchronousCreation/ProgramIncrementsCreatorTest.php +3 −3 Go to diff View file
M plugins/scaled_agile/tests/unit/Program/Backlog/CreationCheck/ArtifactCreatorCheckerTest.php +1 −1 Go to diff View file
M plugins/scaled_agile/tests/unit/Program/Backlog/CreationCheck/ProgramIncrementArtifactCreatorCheckerTest.php +6 −6 Go to diff View file
M plugins/scaled_agile/tests/unit/Program/Backlog/ProgramIncrement/Source/Changeset/Values/SynchronizedFieldCollectionBuilderTest.php +2 −2 Go to diff View file