Skip to content

Instantly share code, notes, and snippets.

@nicolopignatelli
Last active February 5, 2018 11:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nicolopignatelli/2157255db2d335ad4633fe37616f6c3c to your computer and use it in GitHub Desktop.
Save nicolopignatelli/2157255db2d335ad4633fe37616f6c3c to your computer and use it in GitHub Desktop.
package com.mywonderfulbnb.bnb.definition
final class BnbId {
private uuid;
public BnbId(UUID uuid) {
this.uuid = uuid;
}
}
package com.mywonderfulbnb.bnb.definition
final class OwnerId {
private uuid;
public OwnerId(UUID uuid) {
this.uuid = uuid;
}
}
package com.mywonderfulbnb.bnb.definition
final class Service {
public addBnb(UUID ownerUuid, UUID bnbUuid, String nameStr) {
ownerId = new OwnerId(ownerUuid);
bnbId = new BnbId(bnbUuid);
name = new Name(nameStr);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment