com.huawei.openstack4j.openstack.workflow.domain.BaseDefinition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openstack4j Show documentation
Show all versions of openstack4j Show documentation
Huawei Cloud Open API SDK for Java
/*******************************************************************************
* Copyright 2016 ContainX and OpenStack4j
*
* 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.
*******************************************************************************/
/*******************************************************************************
* Huawei has modified this source file.
* Copyright 2018 Huawei Technologies Co.,Ltd.
*
* 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 com.huawei.openstack4j.openstack.workflow.domain;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.huawei.openstack4j.model.workflow.Definition;
import com.huawei.openstack4j.model.workflow.Scope;
import com.huawei.openstack4j.model.workflow.builder.DefinitionBuilder;
import java.util.Date;
import java.util.List;
/**
* Base class for all definition models.
*
* @author Renat Akhmerov
*/
public abstract class BaseDefinition implements Definition {
protected String id;
@JsonProperty("created_at")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
protected Date createdAt;
@JsonProperty("updated_at")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
protected Date updatedAt;
protected List tags;
protected String name;
protected String definition;
@JsonProperty("project_id")
protected String projectId;
protected Scope scope;
protected Boolean system;
@Override
public String getId() {
return id;
}
@Override
public String getName() {
return name;
}
@Override
public String getDefinition() {
return definition;
}
public Date getCreatedAt() {
return createdAt;
}
public Date getUpdatedAt() {
return updatedAt;
}
@Override
public Boolean isSystem() {
return system;
}
@Override
public List getTags() {
return tags;
}
@Override
public Scope getScope() {
return scope;
}
@Override
public String getProjectId() {
return projectId;
}
/**
* Base definition builder.
*
* @author Renat Akhmerov
*/
@SuppressWarnings("unchecked")
public static abstract class BaseDefinitionBuilder, M extends BaseDefinition>
implements DefinitionBuilder {
protected M model;
BaseDefinitionBuilder(M model) {
this.model = model;
}
public M build() {
return model;
}
public T from(Definition in) {
return null;
}
public T id(String id) {
model.id = id;
return (T) this;
}
public T name(String name) {
model.name = name;
return (T) this;
}
public T definition(String definition) {
model.definition = definition;
return (T) this;
}
public T created(Date create) {
model.createdAt = create;
return (T) this;
}
public T updated(Date updated) {
model.updatedAt = updated;
return (T) this;
}
public T system(Boolean system) {
model.system = system;
return (T) this;
}
public T tags(List tags) {
model.tags = tags;
return (T) this;
}
public T scope(Scope scope) {
model.scope = scope;
return (T) this;
}
public T projectId(String projectId) {
model.projectId = projectId;
return (T) this;
}
}
}