Skip to content

Commit

Permalink
YARN-9708. Fix CheckStyle.
Browse files Browse the repository at this point in the history
  • Loading branch information
slfan1989 committed Aug 25, 2022
1 parent 1b918a4 commit 745c5b8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
*/
package org.apache.hadoop.yarn.server.federation.store;

import org.apache.hadoop.classification.InterfaceAudience;
import org.apache.hadoop.classification.InterfaceStability;
import org.apache.hadoop.classification.InterfaceAudience.Private;
import org.apache.hadoop.classification.InterfaceStability.Unstable;
import org.apache.hadoop.yarn.exceptions.YarnException;
import org.apache.hadoop.yarn.server.federation.store.records.RouterMasterKeyRequest;
import org.apache.hadoop.yarn.server.federation.store.records.RouterMasterKeyResponse;
Expand All @@ -31,8 +31,8 @@
* <em>DelegationToken</em> that have been submitted to the federated cluster.
*
*/
@InterfaceAudience.Private
@InterfaceStability.Unstable
@Private
@Unstable
public interface FederationDelegationTokenStateStore {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
*/
package org.apache.hadoop.yarn.server.federation.store.records.impl.pb;

import org.apache.hadoop.classification.InterfaceAudience;
import org.apache.hadoop.classification.InterfaceStability;
import org.apache.hadoop.classification.InterfaceAudience.Private;
import org.apache.hadoop.classification.InterfaceStability.Unstable;
import org.apache.hadoop.thirdparty.protobuf.TextFormat;
import org.apache.hadoop.yarn.proto.YarnSecurityTokenProtos.YARNDelegationTokenIdentifierProto;
import org.apache.hadoop.yarn.security.client.RMDelegationTokenIdentifier;
Expand All @@ -34,8 +34,8 @@
/**
* Protocol buffer based implementation of {@link RouterStoreToken}.
*/
@InterfaceAudience.Private
@InterfaceStability.Unstable
@Private
@Unstable
public class RouterStoreTokenPBImpl extends RouterStoreToken {

private RouterStoreTokenProto proto = RouterStoreTokenProto.getDefaultInstance();
Expand Down

0 comments on commit 745c5b8

Please sign in to comment.