This file contains hidden or 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
mqtt: | |
broker: "< ip >" | |
port: 1883 | |
username: "<username>" | |
password: "<password>" | |
discovery: true | |
topic_prefix: "megadesk" | |
on_message: | |
- topic: "megadesk/set/height" |
This file contains hidden or 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
public UserService { | |
public User register( | |
@NonNull final String username, | |
@NonNull final String plainPassword, | |
@NonNull final Email email, | |
@NonNull final LocalDate birthDate, | |
@NonNull final Gender gender) throws UnableToSaveUserException {} | |
} |
This file contains hidden or 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
public class Buncher extends AbstractFSM<State, Data> { | |
{ | |
startWith(Idle, Uninitialized); | |
when(Idle, | |
matchEvent(SetTarget.class, Uninitialized.class, | |
(setTarget, uninitialized) -> | |
stay().using(new Todo(setTarget.getRef(), new LinkedList<>())))); | |
onTransition( |
This file contains hidden or 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
# Created by https://www.gitignore.io/api/eclipse,java,jetbrains,netbeans | |
### Eclipse ### | |
.metadata | |
bin/ | |
tmp/ | |
*.tmp | |
*.bak | |
*.swp |
This file contains hidden or 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
var PatientPage=require('./patient.page.js'); | |
var UpdatePatientPage = Object.create(new PatientPage()); | |
var UpdatePatientPage=function(){ | |
var HeaderPage=require('./../../common/pages/header.page.js'); | |
this.header=new HeaderPage(); | |
this.patient=element(by.binding('vm.patient')); |