public OutputImpl(String title, String type, Map<String, Object> configuration, Date createdAt, String creatorUserId) {
this(title, type, configuration, createdAt, creatorUserId, null);
}
public OutputImpl(String title, String type, Map<String, Object> configuration, Date createdAt, String creatorUserId, String contentPack) {
this._id = new ObjectId();
this.title = title;
this.type = type;
this.configuration = configuration;
this.createdAt = createdAt;
this.creatorUserId = creatorUserId;