-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from diging/develop
prepare release
- Loading branch information
Showing
15 changed files
with
167 additions
and
167 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
cepheus/src/main/java/edu/asu/diging/gilesecosystem/cepheus/config/CepheusConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package edu.asu.diging.gilesecosystem.cepheus.config; | ||
|
||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
|
||
import edu.asu.diging.gilesecosystem.cepheus.service.Properties; | ||
import edu.asu.diging.gilesecosystem.septemberutil.service.ISystemMessageHandler; | ||
import edu.asu.diging.gilesecosystem.septemberutil.service.impl.SystemMessageHandler; | ||
import edu.asu.diging.gilesecosystem.util.properties.IPropertiesManager; | ||
|
||
@Configuration | ||
public class CepheusConfig { | ||
|
||
@Autowired | ||
private IPropertiesManager propertyManager; | ||
|
||
@Bean | ||
public ISystemMessageHandler getMessageHandler() { | ||
return new SystemMessageHandler(propertyManager.getProperty(Properties.APPLICATION_ID)); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
83 changes: 0 additions & 83 deletions
83
...s/src/main/java/edu/asu/diging/gilesecosystem/cepheus/service/impl/PropertiesManager.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.