public void addScope()

in common/src/main/java/org/apache/servicecomb/fence/jwt/JWTClaims.java [67:72]


  public void addScope(String operation) {
    if (this.scope == null) {
      this.scope = new HashSet<>();
    }
    this.scope.add(operation);
  }