
org.activiti.api.runtime.model.impl.StartMessageSubscriptionImpl Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2018 Alfresco, Inc. and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.activiti.api.runtime.model.impl;
import java.util.Date;
import java.util.Objects;
import org.activiti.api.process.model.StartMessageSubscription;
public class StartMessageSubscriptionImpl implements StartMessageSubscription {
private String id;
private String eventName;
private String processDefinitionId;
private String configuration;
private String activityId;
private Date created;
private StartMessageSubscriptionImpl(Builder builder) {
this.id = builder.id;
this.eventName = builder.eventName;
this.processDefinitionId = builder.processDefinitionId;
this.configuration = builder.configuration;
this.activityId = builder.activityId;
this.created = builder.created;
}
StartMessageSubscriptionImpl() {
}
public String getId() {
return id;
}
public String getEventName() {
return eventName;
}
public String getProcessDefinitionId() {
return processDefinitionId;
}
public String getConfiguration() {
return configuration;
}
public String getActivityId() {
return activityId;
}
public Date getCreated() {
return created;
}
@Override
public int hashCode() {
return Objects.hash(activityId,
configuration,
created,
eventName,
id,
processDefinitionId);
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
StartMessageSubscriptionImpl other = (StartMessageSubscriptionImpl) obj;
return Objects.equals(activityId, other.activityId) &&
Objects.equals(configuration, other.configuration) &&
Objects.equals(created, other.created) &&
Objects.equals(eventName, other.eventName) &&
Objects.equals(id, other.id) &&
Objects.equals(processDefinitionId, other.processDefinitionId);
}
@Override
public String toString() {
StringBuilder builder2 = new StringBuilder();
builder2.append("MessageEventSubscriptionImpl [id=")
.append(id)
.append(", eventName=")
.append(eventName)
.append(", processDefinitionId=")
.append(processDefinitionId)
.append(", configuration=")
.append(configuration)
.append(", activityId=")
.append(activityId)
.append(", created=")
.append(created)
.append("]");
return builder2.toString();
}
/**
* Creates a builder to build {@link StartMessageSubscriptionImpl}.
* @return created builder
*/
public static Builder builder() {
return new Builder();
}
/**
* Creates a builder to build {@link StartMessageSubscriptionImpl} and initialize it with the given object.
* @param startMessageSubscriptionImpl to initialize the builder with
* @return created builder
*/
public static Builder builderFrom(StartMessageSubscriptionImpl startMessageSubscriptionImpl) {
return new Builder(startMessageSubscriptionImpl);
}
/**
* Builder to build {@link StartMessageSubscriptionImpl}.
*/
public static final class Builder {
private String id;
private String eventName;
private String processDefinitionId;
private String configuration;
private String activityId;
private Date created;
public Builder() {
}
private Builder(StartMessageSubscriptionImpl startMessageSubscriptionImpl) {
this.id = startMessageSubscriptionImpl.id;
this.eventName = startMessageSubscriptionImpl.eventName;
this.processDefinitionId = startMessageSubscriptionImpl.processDefinitionId;
this.configuration = startMessageSubscriptionImpl.configuration;
this.activityId = startMessageSubscriptionImpl.activityId;
this.created = startMessageSubscriptionImpl.created;
}
/**
* Builder method for id parameter.
* @param id field to set
* @return builder
*/
public Builder withId(String id) {
this.id = id;
return this;
}
/**
* Builder method for eventName parameter.
* @param eventName field to set
* @return builder
*/
public Builder withEventName(String eventName) {
this.eventName = eventName;
return this;
}
/**
* Builder method for processDefinitionId parameter.
* @param processDefinitionId field to set
* @return builder
*/
public Builder withProcessDefinitionId(String processDefinitionId) {
this.processDefinitionId = processDefinitionId;
return this;
}
/**
* Builder method for configuration parameter.
* @param configuration field to set
* @return builder
*/
public Builder withConfiguration(String configuration) {
this.configuration = configuration;
return this;
}
/**
* Builder method for activityId parameter.
* @param activityId field to set
* @return builder
*/
public Builder withActivityId(String activityId) {
this.activityId = activityId;
return this;
}
/**
* Builder method for created parameter.
* @param created field to set
* @return builder
*/
public Builder withCreated(Date created) {
this.created = created;
return this;
}
/**
* Builder method of the builder.
* @return built class
*/
public StartMessageSubscriptionImpl build() {
return new StartMessageSubscriptionImpl(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy