package authtoken const defaultAuthTokenTableName = "auth_token_account" const defaultWritableAuthTokenTableName = "auth_token" // TableName returns the table name for the auth token. func (s *AuthToken) TableName() string { if s.tableName != "" { return s.tableName } return defaultAuthTokenTableName } // SetTableName sets the table name. If the caller attempts to // set the name to "" the name will be reset to the default name. func (s *AuthToken) SetTableName(n string) { s.tableName = n } // TableName returns the table name for the auth token. func (s *writableAuthToken) TableName() string { if s.tableName != "" { return s.tableName } return defaultWritableAuthTokenTableName } // SetTableName sets the table name. If the caller attempts to // set the name to "" the name will be reset to the default name. func (s *writableAuthToken) SetTableName(n string) { s.tableName = n }