-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
‘xcsnx’
committed
Jun 30, 2024
1 parent
33b99de
commit 1525206
Showing
19 changed files
with
313 additions
and
78 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
113 changes: 113 additions & 0 deletions
113
shenyu-admin/src/main/java/org/apache/shenyu/admin/model/dto/BatchNamespaceCommonDTO.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You 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.apache.shenyu.admin.model.dto; | ||
|
||
import javax.validation.constraints.NotBlank; | ||
import javax.validation.constraints.NotEmpty; | ||
import javax.validation.constraints.NotNull; | ||
import java.io.Serializable; | ||
import java.util.List; | ||
import java.util.Objects; | ||
|
||
/** | ||
* The type Batch common dto. | ||
*/ | ||
public class BatchNamespaceCommonDTO implements Serializable { | ||
|
||
private static final long serialVersionUID = 7154784370528669046L; | ||
|
||
@NotEmpty | ||
@NotNull | ||
private List<@NotBlank String> ids; | ||
|
||
private Boolean enabled; | ||
|
||
@NotNull | ||
private String namespaceId; | ||
|
||
/** | ||
* Gets the value of ids. | ||
* | ||
* @return the value of ids | ||
*/ | ||
public List<String> getIds() { | ||
return ids; | ||
} | ||
|
||
/** | ||
* Sets the ids. | ||
* | ||
* @param ids ids | ||
*/ | ||
public void setIds(final List<String> ids) { | ||
this.ids = ids; | ||
} | ||
|
||
/** | ||
* Gets the value of enabled. | ||
* | ||
* @return the value of enabled | ||
*/ | ||
public Boolean getEnabled() { | ||
return enabled; | ||
} | ||
|
||
/** | ||
* Sets the enabled. | ||
* | ||
* @param enabled enabled | ||
*/ | ||
public void setEnabled(final Boolean enabled) { | ||
this.enabled = enabled; | ||
} | ||
|
||
/** | ||
* Gets the value of namespaceId. | ||
* | ||
* @return the value of namespaceId | ||
*/ | ||
public String getNamespaceId() { | ||
return namespaceId; | ||
} | ||
|
||
/** | ||
* Sets the namespaceId. | ||
* | ||
* @param namespaceId namespaceId | ||
*/ | ||
public void setNamespaceId(final String namespaceId) { | ||
this.namespaceId = namespaceId; | ||
} | ||
|
||
@Override | ||
public boolean equals(final Object o) { | ||
if (this == o) { | ||
return true; | ||
} | ||
if (o == null || getClass() != o.getClass()) { | ||
return false; | ||
} | ||
BatchNamespaceCommonDTO that = (BatchNamespaceCommonDTO) o; | ||
return Objects.equals(ids, that.ids) && Objects.equals(enabled, that.enabled) && Objects.equals(namespaceId, that.namespaceId); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(ids, enabled, namespaceId); | ||
} | ||
} |
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.