-
Notifications
You must be signed in to change notification settings - Fork 67
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
1 parent
f3f996d
commit f7883d9
Showing
7 changed files
with
600 additions
and
0 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
56 changes: 56 additions & 0 deletions
56
src/main/java/com/baidubce/services/bvw/model/matlib/MaterialGetRequest.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,56 @@ | ||
/* | ||
* Copyright 2019-2020 Baidu, Inc. | ||
* | ||
* 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.baidubce.services.bvw.model.matlib; | ||
|
||
import com.baidubce.auth.BceCredentials; | ||
import com.baidubce.model.AbstractBceRequest; | ||
|
||
/** | ||
* The request of getting material from material library. | ||
*/ | ||
public class MaterialGetRequest extends AbstractBceRequest { | ||
|
||
/** | ||
* The material id in material library. | ||
*/ | ||
private String materialId; | ||
|
||
public MaterialGetRequest() { | ||
} | ||
|
||
public MaterialGetRequest(String materialId) { | ||
this.materialId = materialId; | ||
} | ||
|
||
public String getMaterialId() { | ||
return materialId; | ||
} | ||
|
||
public void setMaterialId(String materialId) { | ||
this.materialId = materialId; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "MaterialGetRequest{" + | ||
"materialId='" + materialId + '\'' + | ||
'}'; | ||
} | ||
|
||
@Override | ||
public AbstractBceRequest withRequestCredentials(BceCredentials credentials) { | ||
this.setRequestCredentials(credentials); | ||
return this; | ||
} | ||
|
||
} |
Oops, something went wrong.