-
Notifications
You must be signed in to change notification settings - Fork 400
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
eaa17eb
commit ca71a04
Showing
12 changed files
with
668 additions
and
49 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
108 changes: 108 additions & 0 deletions
108
...ain/java/org/apache/gravitino/listener/api/event/AssociateTagsForMetadataObjectEvent.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,108 @@ | ||
/* | ||
* 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.gravitino.listener.api.event; | ||
|
||
import org.apache.gravitino.NameIdentifier; | ||
import org.apache.gravitino.annotation.DeveloperApi; | ||
import org.apache.gravitino.MetadataObject; | ||
|
||
/** Represents an event that is triggered upon successfully associating tags with a metadata object. */ | ||
@DeveloperApi | ||
public final class AssociateTagsForMetadataObjectEvent extends TagEvent { | ||
private final String metalake; | ||
private final MetadataObject metadataObject; | ||
private final String[] tagsToAdd; | ||
private final String[] tagsToRemove; | ||
private final String[] associatedTags; | ||
|
||
/** | ||
* Constructs an instance of {@code AssociateTagsForMetadataObjectEvent}. | ||
* | ||
* @param user The username of the individual who initiated the tag association. | ||
* @param metalake The metalake from which the tags were associated. | ||
* @param metadataObject The metadata object with which the tags were associated. | ||
* @param tagsToAdd The tags that were added. | ||
* @param tagsToRemove The tags that were removed. | ||
* @param associatedTags The resulting list of associated tags after the operation. | ||
*/ | ||
public AssociateTagsForMetadataObjectEvent(String user, String metalake, MetadataObject metadataObject, String[] tagsToAdd, String[] tagsToRemove, String[] associatedTags) { | ||
super(user, NameIdentifier.of(metalake)); | ||
this.metalake = metalake; | ||
this.metadataObject = metadataObject; | ||
this.tagsToAdd = tagsToAdd; | ||
this.tagsToRemove = tagsToRemove; | ||
this.associatedTags = associatedTags; | ||
} | ||
|
||
/** | ||
* Provides the metalake associated with this event. | ||
* | ||
* @return The metalake from which the tags were associated. | ||
*/ | ||
public String metalake() { | ||
return metalake; | ||
} | ||
|
||
/** | ||
* Provides the metadata object associated with this event. | ||
* | ||
* @return The {@link MetadataObject} with which the tags were associated. | ||
*/ | ||
public MetadataObject metadataObject() { | ||
return metadataObject; | ||
} | ||
|
||
/** | ||
* Provides the tags that were added in this operation. | ||
* | ||
* @return An array of tag names that were added. | ||
*/ | ||
public String[] tagsToAdd() { | ||
return tagsToAdd; | ||
} | ||
|
||
/** | ||
* Provides the tags that were removed in this operation. | ||
* | ||
* @return An array of tag names that were removed. | ||
*/ | ||
public String[] tagsToRemove() { | ||
return tagsToRemove; | ||
} | ||
|
||
/** | ||
* Provides the resulting list of associated tags after the operation. | ||
* | ||
* @return An array of tag names representing the associated tags. | ||
*/ | ||
public String[] associatedTags() { | ||
return associatedTags; | ||
} | ||
|
||
/** | ||
* Returns the type of operation. | ||
* | ||
* @return The operation type. | ||
*/ | ||
@Override | ||
public OperationType operationType() { | ||
return OperationType.ASSOCIATE_TAGS_FOR_METADATA_OBJECT; | ||
} | ||
} |
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
84 changes: 84 additions & 0 deletions
84
core/src/main/java/org/apache/gravitino/listener/api/event/GetTagEvent.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,84 @@ | ||
/* | ||
* 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.gravitino.listener.api.event; | ||
|
||
import org.apache.gravitino.NameIdentifier; | ||
import org.apache.gravitino.annotation.DeveloperApi; | ||
import org.apache.gravitino.tag.Tag; | ||
|
||
/** Represents an event that is triggered upon successfully retrieving a tag. */ | ||
@DeveloperApi | ||
public final class GetTagEvent extends TagEvent { | ||
private final String metalake; | ||
private final String tagName; | ||
private final Tag tag; | ||
|
||
/** | ||
* Constructs an instance of {@code GetTagEvent}. | ||
* | ||
* @param user The username of the individual who initiated the tag retrieval. | ||
* @param metalake The metalake from which the tag was retrieved. | ||
* @param tagName The name of the tag being retrieved. | ||
* @param tag The {@link Tag} object representing the retrieved tag. | ||
*/ | ||
public GetTagEvent(String user, String metalake, String tagName, Tag tag) { | ||
super(user, NameIdentifier.of(metalake)); | ||
this.metalake = metalake; | ||
this.tagName = tagName; | ||
this.tag = tag; | ||
} | ||
|
||
/** | ||
* Provides the metalake associated with this event. | ||
* | ||
* @return The metalake from which the tag was retrieved. | ||
*/ | ||
public String metalake() { | ||
return metalake; | ||
} | ||
|
||
/** | ||
* Provides the name of the retrieved tag. | ||
* | ||
* @return The name of the tag. | ||
*/ | ||
public String tagName() { | ||
return tagName; | ||
} | ||
|
||
/** | ||
* Provides the retrieved tag object. | ||
* | ||
* @return The {@link Tag} object. | ||
*/ | ||
public Tag tag() { | ||
return tag; | ||
} | ||
|
||
/** | ||
* Returns the type of operation. | ||
* | ||
* @return The operation type. | ||
*/ | ||
@Override | ||
public OperationType operationType() { | ||
return OperationType.GET_TAG; | ||
} | ||
} |
Oops, something went wrong.