Skip to content
This repository was archived by the owner on Nov 21, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
222 changes: 0 additions & 222 deletions src/com/mcplusa/google/feeder/GSAFeed.java

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -10,43 +10,45 @@ public class GSAACLPrincipal {
private ACLPrincipalScope scope;
private ACLPrincipalAccess access;
private String content;

public String getNamespace() {
return namespace;
}

public void setNamespace(String namespace) {
this.namespace = namespace;
}

public ACLCaseSensitivityType getCaseSensitivityType() {
return caseSensitivityType;
}

public void setCaseSensitivityType(ACLCaseSensitivityType caseSensitivityType) {
this.caseSensitivityType = caseSensitivityType;
}
public void setCaseSensitivity(boolean sensitive) {
if (sensitive) {
this.setCaseSensitivityType(ACLCaseSensitivityType.ACL_PRINCIPAL_CASE_SENSITIVE);
} else {
this.setCaseSensitivityType(ACLCaseSensitivityType.ACL_PRINCIPAL_CASE_INSENSITIVE);
}
}

public ACLPrincipalScope getScope() {
return scope;
}

public void setScope(ACLPrincipalScope scope) {
this.scope = scope;
}

public ACLPrincipalAccess getAccess() {
return access;
}

public void setAccess(ACLPrincipalAccess access) {
this.access = access;
}

public String getContent() {
return content;
}

public void setContent(String content) {
this.content = content;
}
Expand Down
Loading