forked from KscSDK/ksc-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
33 changed files
with
2,179 additions
and
4 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
Submodule ksc-sdk-java
added at
7082be
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>com.ksc</groupId> | ||
<artifactId>ksc-sdk-java</artifactId> | ||
<version>0.1.9</version> | ||
</parent> | ||
<artifactId>ksc-sdk-java-tag</artifactId> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.ksc</groupId> | ||
<artifactId>ksc-sdk-java-core</artifactId> | ||
<version>0.1.9</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>log4j</groupId> | ||
<artifactId>log4j</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.hamcrest</groupId> | ||
<artifactId>hamcrest-all</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.easymock</groupId> | ||
<artifactId>easymock</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-io</groupId> | ||
<artifactId>commons-io</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.mockito</groupId> | ||
<artifactId>mockito-all</artifactId> | ||
<version>1.10.19</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>nl.jqno.equalsverifier</groupId> | ||
<artifactId>equalsverifier</artifactId> | ||
<version>1.7.5</version> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
</project> |
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,58 @@ | ||
package com.ksc.tag; | ||
|
||
import com.ksc.tag.model.CreateTagsRequest; | ||
import com.ksc.tag.model.CreateTagsResult; | ||
import com.ksc.tag.model.DeleteTagsRequest; | ||
import com.ksc.tag.model.DeleteTagsResult; | ||
import com.ksc.tag.model.DescribeTagKeysRequest; | ||
import com.ksc.tag.model.DescribeTagKeysResult; | ||
import com.ksc.tag.model.DescribeTagValuesRequest; | ||
import com.ksc.tag.model.DescribeTagValuesResult; | ||
import com.ksc.tag.model.DescribeTagsRequest; | ||
import com.ksc.tag.model.DescribeTagsResult; | ||
|
||
public interface KSCTAG { | ||
|
||
/** | ||
* 创建标签 | ||
* | ||
* @param createTagsRequest | ||
* @return | ||
*/ | ||
CreateTagsResult createTages(CreateTagsRequest createTagsRequest); | ||
|
||
/** | ||
* 删除标签 | ||
* | ||
* @param deleteTagsRequest | ||
* @return | ||
*/ | ||
DeleteTagsResult deleteTages(DeleteTagsRequest deleteTagsRequest); | ||
|
||
/** | ||
* 描述标签 | ||
* | ||
* @param describeTagsRequest | ||
* @return | ||
*/ | ||
DescribeTagsResult describeTags(DescribeTagsRequest describeTagsRequest); | ||
|
||
/** | ||
* 描述标签名称 | ||
* | ||
* @param describeTagValuesRequest | ||
* @return | ||
*/ | ||
DescribeTagValuesResult describeTagValues( | ||
DescribeTagValuesRequest describeTagValuesRequest); | ||
|
||
/** | ||
* 描述标签分类 | ||
* | ||
* @param describeTagKeysRequest | ||
* @return | ||
*/ | ||
DescribeTagKeysResult describeTagKeys( | ||
DescribeTagKeysRequest describeTagKeysRequest); | ||
|
||
} |
Oops, something went wrong.